pico-sdk
pico-sdk copied to clipboard
This is a branch for development of an IAR compiler capable SDK
Hi there 👋 I'm trying to use RPi pico as an i2c slave and connect it to the Nvidia Jetson Nano board via an i2c bus. Currently, I'm facing a...
This PR copies the approach used by pico_printf and applies it to pico_stdio to allow a developer to opt out of stdio printf/putchar/etc. wrappers. This is done with the use...
Changes required for wifi/bt firmware compression. Use uzlib library added to the sdk. Change bt firmware loading to use the functions provided for this purpose in cyw43-driver. It calls cyw43_get_firmware_funcs...
This PR adds support for the iLabs OpenDec02 board by adding the ilabs_opendec02.h header file with specific settings for that particular board.
Add support for the iLabs OpenDec02 DCC decoder into the sdk.
I've seen a couple of cases where code is including "pico/platform.h" which causes the wrong defines for pico_w. The right thing to do is include pico.h? Should we guard against...
I have wondered about using the rp2040 chip with IP networking, but using the UART ports (or usb-serial, the recent PIO-based Ethernet MII interface, or even USB-CDC/ENCM) rather than the...
SD-Card is a must these days for all projects that requires more storage than the space in the flash. Even though there are a few implementations out there e.g. [pico-extrac...
## Steps to reproduce: - In the host Pico-W load [Pico-W AP example](https://github.com/raspberrypi/pico-examples/blob/master/pico_w/wifi/access_point/picow_access_point.c). - In the second Pico-W load [Pico-W UDP beacon example](https://github.com/raspberrypi/pico-examples/blob/master/pico_w/wifi/udp_beacon/picow_udp_beacon.c). - Run both Picos and make them...