I hereby claim:
- I am joshka on github.
- I am joshka (https://keybase.io/joshka) on keybase.
- I have a public key whose fingerprint is 926D 6ACA 9B76 8E3C 470F F96E 77AB 325D 0F31 E2F1
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| <PropertyGroup> | |
| <CopyAllFilesToSingleFolderForPackageDependsOn> | |
| $(CopyAllFilesToSingleFolderForPackageDependsOn); | |
| AddWebJobFilesToPublish; | |
| </CopyAllFilesToSingleFolderForPackageDependsOn> | |
| <DestinationType>AzureWebSite</DestinationType> | |
| </PropertyGroup> | |
| </Project> |
| Build started 9/19/2014 4:46:37 AM. | |
| Project "C:\a\src\WebApplication1\WebApplication1.sln" on node 1 (default targets). | |
| ValidateSolutionConfiguration: | |
| Building solution configuration "Debug|Any CPU". | |
| Project "C:\a\src\WebApplication1\WebApplication1.sln" (1) is building "C:\a\src\WebApplication1\WebApplication1\WebApplication1.csproj" (2) on node 1 (default targets). | |
| PrepareForBuild: | |
| Creating directory "obj\Debug\". | |
| CoreCompile: | |
| C:\Program Files (x86)\MSBuild\12.0\bin\amd64\Csc.exe /noconfig /nowarn:1701,1702 /nostdlib+ /errorreport:prompt /warn:4 /define:DEBUG;TRACE /highentropyva+ /reference:C:\a\src\WebApplication1\packages\Antlr.3.4.1.9004\lib\Antlr3.Runtime.dll /reference:C:\a\src\WebApplication1\packages\EntityFramework.6.1.1\lib\net45\EntityFramework.dll /reference:C:\a\src\WebApplication1\packages\EntityFramework.6.1.1\lib\net45\EntityFramework.SqlServer.dll /reference:C:\a\src\WebApplication1\packages\Microsoft.AspNet.Identity.Core.2.1.0\lib\net45\Microsoft.AspNet.Identity.Core.dll /reference:C |
| diff -u plexmediaserver/.AURINFO plexmediaserver-plexpass/.AURINFO | |
| --- plexmediaserver/.AURINFO 2014-08-04 23:25:13.000000000 +1000 | |
| +++ plexmediaserver-plexpass/.AURINFO 2014-08-17 04:13:21.000000000 +1000 | |
| @@ -1,24 +1,20 @@ | |
| -pkgbase = plexmediaserver | |
| - pkgdesc = Plex Media Server for Linux | |
| - pkgver = 0.9.9.14.531 | |
| +pkgbase = plexmediaserver-plexpass | |
| + pkgdesc = PlexPass Release of Plex Media Server for Linux | |
| + pkgver = 0.9.9.16.555 |
| // ... | |
| protected void Application_BeginRequest(object sender, EventArgs e) | |
| { | |
| switch (Request.Url.Scheme) | |
| { | |
| case "http": | |
| RedirectToHttps(); | |
| break; | |
| case "https": | |
| AddStsHeader(); |
This code creates a UART TX on 8 sequential pins of the Raspberry Pi Pico. The main use case being MIDI splitter devices
The second 16 port implementation should work for any number of pins, but just acts as a pure copy to those pins instead of having individual control over every pin of every byte. Hence while less flexible, the controlling software is simpler (just send a uart byte and it's copied to every pin).
Only tested in the simulator so far. https://wokwi.com/projects/344345628967436882
Used https://wokwi.com/tools/pioasm to go from uart_tx.pio.h to uart_tx.h