-
-
Notifications
You must be signed in to change notification settings - Fork 771
nrf52: adc: Add highspeed implementation. #3453
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
Merged
Merged
Conversation
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
d9f6a17
to
87ed018
Compare
2 tasks
lschuermann
previously approved these changes
May 31, 2023
6383db7
to
8f361cb
Compare
8f361cb
to
966c14f
Compare
lschuermann
previously approved these changes
Jun 14, 2023
966c14f
to
9297787
Compare
ppannuto
previously approved these changes
Jun 28, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I moved the default VREF setting up a level so that some other caller of adc::new()
could set something else if needed. @bradjc I'll leave this for you to click merge in case there was some reason you'd not done that I didn't see.
Not all nRF52840 boards use 3.3 V for VDD.
06fc63f
to
85d03d8
Compare
Rebased. Looks good to me. |
ppannuto
approved these changes
Jun 29, 2023
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.
Pull Request Overview
This pull request adds an implementation of
hil::adc::AdcHighSpeed
for the nRF52.The main issue is that the internal clock divider for the SAADC only allows dividing a 16 MHz clock by a value in the range 80 to 2047 (so 8 kHz to 200 kHz sampling). So there is a limited range of possible frequencies. This is also why it's hard to implement continuous sampling.
This also adds VDD detection to the calibrate step, since the nRF52840dk uses a 3V reference and I couldn't figure out why my ADC readings were wrong.
Testing Strategy
Using the libtock-c adc app.
TODO or Help Wanted
How good of a driver do we need?
Documentation Updated
/docs
, or no updates are required.Formatting
make prepush
.