pico-sdk icon indicating copy to clipboard operation
pico-sdk copied to clipboard

Results 311 pico-sdk issues
Sort by recently updated
recently updated
newest added

We have a few applications of the RP2040 chip *and* Pico W-as-a-SOM where it's important for us to: 1. Assert some GPIO pin *really early* on startup 2. Know the...

Since [`hardware/gpio.h` includes `hardware/irq.h`](https://github.com/raspberrypi/pico-sdk/blob/master/src/rp2_common/hardware_gpio/include/hardware/gpio.h#L14), `hardware_gpio_headers` must depend on `hardware_irq_headers` (just like `hardware_gpio` depends on `hardware_irq`). Fixes #955, fixes #882 partially

A target created by [`pico_simple_hardware_headers_target`](https://github.com/raspberrypi/pico-sdk/blob/master/src/CMakeLists.txt#L59-L72) should depend on `hardware_claim_headers` not `hardware_claim`. The reason for this change request is `hardware_claim` adding `claim.c` to my sources, which I do not want (otherwise...

Depends on upstream issue georgerobotics/cyw43-driver#18 See my downstream work so far in earlephilhower/arduino-pico#732

wifi integration

A target created by [`pico_simple_hardware_headers_target`](https://github.com/raspberrypi/pico-sdk/blob/master/src/CMakeLists.txt#L59-L72) must depend on `hardware_claim_headers` not `hardware_claim`. This avoids adding `claim.c` to the user sources. If the user wanted `claim.c` to be added to the sources,...

Currently all include directories are added as none system include directories. This might causes warnings and errors when compiling user code. Fixes #82 and #924

I´m operating with a Master SPI device, that sends Serial Data via SPI, but there is no ChipSelect / SlaveSelect available. The input Data has to go from the device...

Prior to this change, the vcocalc.py script only considered PLL configurations with REFDIV = 1. Sometimes it is beneficial to use PLL configurations with REFDIV > 1. The new version...

Iam trying to compile a software with MQTT messaging. But it failed, because the Mqqt Lib insight the LWIP lib ist not found.

I'm developing an application that relies on achieving high transfer rates between a host and the RP2040 working as a USB device. I noticed that OUT transfers (host -> RP2040)...