-
-
Notifications
You must be signed in to change notification settings - Fork 211
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RPi Pico: delay() has poor accuracy #271
Comments
I've seen the same behavior - delay is too short, while micros() and millis() are accurate. Long-shot guess: The first post in this pull request ARMmbed/mbed-os#14488 lists the Pico's system clock as 120 MHz. But the frequency is actually 125 MHz (seen by querying the clock frequency using the Pico SDK). If the delay function is written assuming 120 MHz, it would produce too short delays by exactly the observed ratio. |
@fjansson you are WONDERFULLY right! Thank you so much for spotting this! I'm preparing the patch and it will be included in the next core release. |
Take the following code on a Raspberry Pi Pico:
You get the following serial output:
And the following can be observed on pin 16:

This shows that the micros()/millis() readings are accurate, and that the problem lies with the delay function, not with the timing.
It seems that asking for a delay of 1000 produces a delay of 960. I also checked
delay(500)
, which produces a delay of 480ms. So it seems to be a linear inaccuracy.I have tried this with core versions 2.1.0 and 2.2.0.
The text was updated successfully, but these errors were encountered: