pico-sdk
pico-sdk copied to clipboard
This PR reformats the doxygen comment markup to make the generated documentation compatible with doxygen versions > 1.8.17, per discussion with @aallan and @mudge . Here's a summary of the...
The documentation for this SDK builds fine with Doxygen 1.8.17 (as indicated by [the comment in the `DoxygenLayout.xml`](https://github.com/raspberrypi/pico-sdk/blob/6a7db34ff63345a7badec79ebea3aaef1712f374/docs/DoxygenLayout.xml#L2)) but has at least two issues when upgrading to the latest version...
Hello All Given the FreeRTOS v11 is released at the end of 2023, the pico-sdk,especially the functions that supports SMP, needed to be updated to support the new flag to...
Hi everyone, I'm using FreeRTOS SMP to work on both core0 and core1. I have 6 tasks (3 in core0 and 3 in core1). In one of my tasks in...
I am trying to prevent my compile flags from being propagated to, since when I add some further warning flags and `-Werror` then compilation fails. Inclusion as a system Library...
This PR Fixes #1642 Runtime for C11 atomics missing. The file pico_atomic.c implements the required functions for the read/modify/write function of atomic variables with sizes of 1, 2, 4 and...
Not sure what the plans are from CMake, but there's a constant deprecation warning when building that gets triggered because the minimum CMake version listed in pioasm's CMakeLists.txt is 3.4....
## Background Suppose we have two DMA channels, 0 and 1, streaming data to a peripheral. Each one chains to the other, to generate gapless streaming without CPU involvement. Occasionally,...
Functions for finding PIO, sm and loading a program and then later freeing resources. And a function that returns the IRQ number for a PIO Fixes #1616
When you get a callback to tell you a character is available, you should be able to call getchar_timeout_us, but it's not working for USB Fixes #1603