Testing complete! See the final repo ❤️
Copy a .uf2
file from the releases
folder to your Raspberry Pi Pico to get running.
To send commands, install minicom
(brew
/apt
/AUR
) and run $ sudo minicom -b 115200 -o -D /dev/ttyACM0
.
Command | Description |
---|---|
set <float> |
Set the target RPM. |
Minicom does not display what you are typing as you type it, so just type the full command and press enter.
The Pico's onboard LED will flash when processing a command and stay solid when ready for the next one.
Make sure to clone the pico-sdk into the parent folder of this one.
Then, install things until building works. Probably need atleast
brew install --cask gcc-arm-embedded
brew install cmake
gcc-arm-embedded trick source.
Install cmake
, and gcc-arm-none-eabi-bin
from the AUR.
Or raspberry-pico-sdk-git
apparently.
Just make
.
Unplug, hold BOOTSEL, replug. Then, sudo picotool info -a
.
- api documentation
- pinout summary
- detailed engineering analysis of the SDK
- tools for reading printf output via usb
Pastebin
pls mount /dev/sdb1 ~/vol/rpi && pls cp build/my_proj.uf2 ~/vol/rpi && pls umount ~/vol/rpi