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

1. Doxyfile.in: added log file to Doxygen for warnings and errors. 2. Doxyfile.in: added call graph and caller graph to Doxygen output. 3. Doxyfile.in: added all source code to Doxygen...

Linking with LTO enabled would otherwise result in an error with `undefined reference to __wrap_remquof'` possibly because they are in the same translation unit. Compiling without LTO worked but I'm...

lto

Fixes #720 # Raspberry Pi Pico SDK with 10-bit i2c addressing support As of v1.3.0 of the SDK, neither 10-bit i2c master mode nor 10-bit i2c slave mode is implemented....

The RP2040 has a register to change the UART FIFO level at which an interrupt will be generated, but this is not exposed in the SDK. The only time it...

missing API

The bit column is not the most helpful number to have in the documentation, really the mask value is what you're interested in when reading that part of the docs,...

`srqtf` should be `sqrtf`. Fixes #701.

Inspired by my comment here: https://github.com/raspberrypi/pico-sdk/pull/316/files#r608219018 I dunno how to plumb this into the CMake infrastructure, but hopefully @kilograham can sort out that part :wink: (I wrote it in Python...

Whilst writing to an I2C EEPROM it's necessary to write eeprom memory address followed by the data to write without a STOP between the address and the data. A typical...

hardware_i2c

It would be nice to be able to use SEGGER RTT as an STDIO driver in the the pico-sdk. The main advantages of RTT over semihosting are the speed of...

The code doesn't output anything via serial usb, but works in case fflush is there: ```c int main() { stdio_init_all(); tusb_init(); while (!tud_cdc_connected()) { sleep_ms(100); } fprintf(stdout, "any string"); //...