pico-sdk
pico-sdk copied to clipboard
This is a feature request. You can assign it to me. I have already written the code and will follow this up with a pull request if there are no...
``` void draw_screen() { multicore_lockout_victim_init(); while(1) { // in the actual application, I'm doing some i2c work here, but this code also fails. tight_loop_contents(); } } int main() { stdio_init_all();...
I´m trying to get the Raspberry Pi Pico running in SPI Slave Mode without a ChipSelect / SlaveSelect Pin. My idea was, to handle the incoming data with an interrupt...
Fixes #774 This PR adds support for using SEGGER RTT as an STDIO driver. The code for the stdio_rtt implementation is quite simple and copies the structure of the other...
As far as I can tell there's no structs defined for accessing the NVIC registers like there is for most of the other core hardware.
I am trying to get the Pico c/C++ SDK working with VS-Code on Mac OSX. I set the SDK path in PICO_SDK_PATH and stored this path as an environment variable....
I have two Raspberry Pi Picos connected via SPI, the master is running CircuitPython while the slave is using the C/C++ SDK. The Picos are not communicating as expected and...
I've read the [Raspberry Pi Pico C/C++ SDK](https://datasheets.raspberrypi.com/pico/raspberry-pi-pico-c-sdk.pdf) manual, regarding interrupt handlers and callback functions. The following points are unclear to me, and I think they are not documented. Would...
I've implemented a bootloader for the Pico W allowing code upload via WiFi: [picowota](https://github.com/usedbytes/picowota); unfortunately this means having a copy of the WiFi firmware in the bootloader code, and another...
Now the Pico W is available the ability to target specific boards via cmake defines is a relevant addition to the introductory documentation.