drivers/periph_timer: add timer_get_closest_freq()#20581
Merged
maribu merged 2 commits intoRIOT-OS:masterfrom Apr 2, 2025
Merged
drivers/periph_timer: add timer_get_closest_freq()#20581maribu merged 2 commits intoRIOT-OS:masterfrom
timer_get_closest_freq()#20581maribu merged 2 commits intoRIOT-OS:masterfrom
Conversation
1 task
096d2ad to
555ab6a
Compare
crasbe
reviewed
Apr 1, 2025
Contributor
crasbe
left a comment
There was a problem hiding this comment.
Tested successfully with F030 and F302 Nucleos. I have more Nucleos to test with if required.
Also tested successfully with an nRF52840DK.
drivers/include/periph/timer.h
Outdated
| * @brief Search the frequency supported by the timer that is closest to | ||
| * a given target frequency, efficiently | ||
| * | ||
| * @param dev Timer to get the closest supported frequency for |
Contributor
Contributor
There was a problem hiding this comment.
If you decide to change it: The same is true for the description in
timer_query_freqs😅
Can you address this as well?
Contributor
There was a problem hiding this comment.
You can squash that change directly.
mguetschow
reviewed
Apr 2, 2025
Contributor
mguetschow
left a comment
There was a problem hiding this comment.
Successfully tested on a BOARD=z1 with MSP430 (will do the same for #20582)
Contributor
|
You can squash the fixups. |
02db09a to
c9861b2
Compare
Add an API to search for the frequency supported by a timer that is closest to the given target frequency. This is in fact non-trivial to get right, as pre-scaler registers can be 16 bit or even 32 bit in size, making a naive loop over all possible pre-scalers too expensive (computationally). Co-authored-by: mguetschow <[email protected]>
c9861b2 to
8b77df4
Compare
crasbe
approved these changes
Apr 2, 2025
Member
Author
|
Thx a lot! |
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
This provides a helper function that builds upon the
periph_timer_query_freqsfeature to find the frequency supported by a given timer that is closest to a given target frequency.This functionality isn't as straight forward to implement, as a naive implementation iterating over all supported pre-scalers will be prohibitively expensive when the pre-scaler register is 16 bit or even 32 bit wide.
Instead, a binary search is performed plus some corner case handling in case the target frequency cannot exactly be met, in which it is checked if the highest frequency below the target or the smallest above the target is closer.
Testing procedure
The test app was extended:
Issues/PRs references
None