pico-sdk
pico-sdk copied to clipboard
with this change we can use PICO_SDK_FETCH_GIT_TAG to specify a release tag for the Pico SDK to download. example usage: ``` set(PICO_SDK_FETCH_FROM_GIT true) set(PICO_SDK_FETCH_FROM_GIT_TAG "1.5.1") include(pico_sdk_import.cmake) ``` Fixes #1631
Add a function that returns the time remaining before triggering for a given pool and alarm id It uses difference between an alarm register and the timerawl register. (see [RP2040...
I'ld like to make a PR to add function that returns the remaining time before an alarm trigger. I'm using an alarm to add a cooldown to an input button...
The hfp_hf_demo example from the btstack library stops working once a SCO connection needs to be established after codecs negotiation is successful. SDK versions: 1.5.0, 1.5.1 **Steps to reproduce** 1....
This is a follow up to https://github.com/raspberrypi/pico-sdk/pull/1394#issuecomment-1921733453 to fix the build warning from that pull and the original issue of https://github.com/raspberrypi/pico-sdk/issues/1393
Setting `CMAKE_${LANG}_FLAGS_DEBUG_INIT` specifically only sets the flags for the Debug config the first time it is configured by CMake, pulling the initially-configured flags from `CMakeCache.txt` on subsequent configurations. This causes...
Optimizing a debug build with PICO_DEOPTIMIZED DEBUG disabled (the current default) results in breakpoints not being possible in certain functions. This change makes the default behaviour of PICO_DEOPTIMIZED_DEBUG to be...
fixes [`harware_alarm_irq_number`](https://github.com/raspberrypi/pico-sdk/blob/6a7db34ff63345a7badec79ebea3aaef1712f374/src/rp2_common/hardware_timer/timer.c#L109) typo. I found myself using this function and couldn't search for it.
It would be nice to add a pio_init function that picks a free pio, state machine and loads a program, as I keep writing this and it's easy to get...
*Prefacing that I am new to using CMake and new to using debuggers, so take what I suggest with a grain of salt - but I believe I've identified a...