sys/busy_wait: add busy wait helper#20241
Merged
benpicco merged 6 commits intoRIOT-OS:masterfrom Jan 11, 2024
Merged
Conversation
maribu
approved these changes
Jan 9, 2024
Member
maribu
left a comment
There was a problem hiding this comment.
Nice one. The blinky example could also make use of this :-)
Teufelchen1
reviewed
Jan 10, 2024
kaspar030
reviewed
Jan 10, 2024
Contributor
Author
|
@maribu if you run the test on MSP430 you can also provide |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Contribution description
We often need to wait for a short period of time before timers are initialized, e.g. in
board_init().Instead of ad-hoc busy wait implementations, provide a common
busy_wait()helper function (taken from msp430) and add abusy_wait_us()for a rough time approximation based on the CPU frequency.Testing procedure
A new test application is provided in
tests/sys/busy_waitthat will measure the diversion from the usec timer:samd20-xpro (Cortex M0+)
saml10-xpro (Cortex M23)
same54-xpro (Cortex M4F)
avr-rss2 (AVR8)
esp8266-esp-12x (ESP8266)
esp32-wroom-32 (ESP32)
esp32s2-wemos-mini (ESP32S2)
esp32s3-devkit (ESP32S3)
esp32c3-devkit (RISC-V)
sipeed-longan-nano (RISC-V)
Issues/PRs references