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

See https://github.com/georgerobotics/cyw43-driver/issues/33

I need a new function for an mDns example I'm writing. I also spotted issues when testing different versions of lwip (the mDns API has changed in new versions of...

See https://github.com/JamesDunne/pico-stdio-usb-bug for a minimal(-ish) reproducible example with no external dependencies required. Steps to reproduce: 1. Use Pico board with USB connection to host PC 2. Build example repo 3....

This PR enables the use of the ARCHIVE_OUTPUT_DIRECTORY target properties in CMake for the generation of uf2 files in the `pico_add_uf2_output` function. The changeset [in lines 47..51](https://github.com/raspberrypi/pico-sdk/commit/8df7a4fe00c3e748dd30c858ebcaf6ea51150c1d#diff-70523fd3fe726ff8a7cba389b1deb5a5b761e02ebefe2fad6a1531d529e440dcR47-R51) is necessary due...

When compiling a [minimal example](https://github.com/ooxi/fedora-36-gcc-12-pico-sdk-linker-warning) with GCC 12.2 I'm getting the following linker warning: ``` [1/5] Performing build step for 'ELF2UF2Build' ninja: no work to do. [5/5] Linking CXX executable...

When building elf2uf2 with clang x86_64-pc-windows-msvc and Windows 10 SDK, the following warning occurs. This PR suppresses the warnings. ```console [1/2] Building CXX object CMakeFiles/elf2uf2.dir/main.cpp.obj C:/pico-sdk/tools/elf2uf2/main.cpp:359:16: warning: 'fopen' is deprecated:...

Hi there, I am trying to measure time elapsed in my code using `std::chrono`. The code compiles just fine, but the time measurements seem to be completely random. I tried...

The majority of our `.S` files use unified syntax, however very little inline assembler does. This can lead to bugs, e.g. this ```c __force_inline static int32_t __mul_instruction(int32_t a, int32_t b)...

We now include Doxygen from `cyw43_driver`; we should try to add TinyUSB and lwip also (though given how fickle Doxygen is, i don't know whether we can do this directly...

I'm using a single CMake file for a multi-board project along with a libraries folder. This is what my main CMake File looks like: ```cmake cmake_minimum_required(VERSION 3.13) # ---------- Setup...