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

To avoid the issue described in #988, temporarily clear the OUT_STICKY bit in the affected functions, and restore the value later. (Note that I didn't test this fix with the...

Fixes #1017 Checked by compiling a C++ file that includes all the same files included by `kitchen_sink.c`.

When including [`hardware/adc.h`](https://github.com/raspberrypi/pico-sdk/blob/master/src/rp2_common/hardware_adc/include/hardware/adc.h) while depending on `hardware_adc_headers` I'm getting a compile error because [`hardware/gpio.h`](https://github.com/raspberrypi/pico-sdk/blob/master/src/rp2_common/hardware_gpio/include/hardware/gpio.h) cannot be found ``` In file included from /mysource.c++:4: /pico-sdk/src/rp2_common/hardware_adc/include/hardware/adc.h:12:10: fatal error: hardware/gpio.h: No such file...

Since [`hardware/adc.h`](https://github.com/raspberrypi/pico-sdk/blob/master/src/rp2_common/hardware_adc/include/hardware/adc.h) includes [`hardware/gpio.h`](https://github.com/raspberrypi/pico-sdk/blob/master/src/rp2_common/hardware_gpio/include/hardware/gpio.h), `hardware_adc_headers` must depend on `hardware_gpio_headers` Fixes #975

__get_current_exception is very simple and locating it in a section that is copied to RAM by copy_to_ram builds or making it inline could be justified on that basis alone. However,...

Including `hardware/pio.h` from a C++ file generates warnings like the following. My compiler version is `arm-none-eabi-g++ (GNU Toolchain for the Arm Architecture 11.2-2022.02 (arm-11.16)) 11.2.1 20220111`. ``` In file included...

pico-sdk doesn't support thread-local storage (thread_local keyword), which is required for c++ exceptions to function properly in a multi-core environment. Internally libstdc++ stores some global exception state in a thread_local...

newlib-multicore
c++

I was experimenting with different versions of lwip and it seems that this source file src/core/ipv4/acd.c doesn't exists in some older stable releases. I think we should handle this? Also,...

The code in micropython for mDns adds a few characters of the mac address to the host name which makes sense. The function to do this doesn't exist in the...

Is there a function that does the same like `printf()` in the TinyUSB library? I would use `printf()` but i need my code to run as fast as possible so...