Graham Sanderson

Results 589 comments of Graham Sanderson

> I do have freertos included, but the scheduler is not active at the time when these sleep_ms are called What version of FreeRTOS (upstream, or rpi repo)? is this...

@digiexchris i'm a bit confused reading this; do you have a simple example which shows the problem _without_ the misconfiguration of debug under VSCode?

I tried this ``` #include #include "pico/stdlib.h" int main() { stdio_init_all(); auto time = get_absolute_time(); auto incrementingTime = time; for(int i = 0; i < 12500000; i++) //about 10 seconds...

this looks great, thank you. one initial question from a quick skip read; how does overriding `_write` play with STDIN/STDOUT/STDERR handles already handled by SDK override of the same? I'm...

> I'm putting this in 1.7.0 for now as we are looking at reworking our C library API (so we don't just support newlib) This is the `pico_clib_interface` stuff in...

> LGTM, but should probably add support for the new cyw43-firmware family (added in [raspberrypi/pico-sdk#1969](https://github.com/raspberrypi/pico-sdk/pull/1969)) - this can be done with the following changes > > Also pinging @kilograham again...

I wonder if this is a problem peculiar to WSL with usbipd 1. can you try using a windows build of picotool outside of WSL to see if that works...

assigning to myself; i think i'd rather return the abort reason in the top half of a 64 bit rc (and do some API massaging)

yeah, i guess returning a struct with two elements in a replacement APIs and picking the result out for the existing APIs is good (Note a two uint32_t struct will...