-
Notifications
You must be signed in to change notification settings - Fork 8.2k
drivers: adc: sam0: Adjust resolution with the oversampling factor #75201
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
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -343,26 +343,52 @@ static int start_read(const struct device *dev, | |
| switch (sequence->resolution) { | ||
| case 8: | ||
| if (sequence->oversampling) { | ||
| LOG_ERR("Oversampling requires 12 bit resolution"); | ||
| LOG_ERR("Oversampling requires minimum 13 bit resolution"); | ||
| return -EINVAL; | ||
| } | ||
|
|
||
| ADC_RESSEL(adc) = ADC_RESSEL_8BIT; | ||
| break; | ||
| case 10: | ||
| if (sequence->oversampling) { | ||
| LOG_ERR("Oversampling requires 12 bit resolution"); | ||
| LOG_ERR("Oversampling requires minimum 13 bit resolution"); | ||
| return -EINVAL; | ||
| } | ||
|
|
||
| ADC_RESSEL(adc) = ADC_RESSEL_10BIT; | ||
| break; | ||
| case 12: | ||
| if (sequence->oversampling) { | ||
| ADC_RESSEL(adc) = ADC_RESSEL_16BIT; | ||
| } else { | ||
| ADC_RESSEL(adc) = ADC_RESSEL_12BIT; | ||
| LOG_ERR("Oversampling requires minimum 13 bit resolution"); | ||
| return -EINVAL; | ||
| } | ||
| ADC_RESSEL(adc) = ADC_RESSEL_12BIT; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The ADC resolution is 12bit max. However, if you want to Accumulate, Average or Oversampling, see Check below sections: This change must work for all sam0 series. This possible it related to #76963 |
||
| break; | ||
| case 13: | ||
| if (sequence->oversampling != 2U) { | ||
| LOG_ERR("13 bit resolution requires an oversampling of 2"); | ||
| return -EINVAL; | ||
| } | ||
| ADC_RESSEL(adc) = ADC_RESSEL_16BIT; | ||
| break; | ||
| case 14: | ||
| if (sequence->oversampling != 4U) { | ||
| LOG_ERR("14 bit resolution requires an oversampling of 4"); | ||
| return -EINVAL; | ||
| } | ||
| ADC_RESSEL(adc) = ADC_RESSEL_16BIT; | ||
| break; | ||
| case 15: | ||
| if (sequence->oversampling != 6U) { | ||
| LOG_ERR("15 bit resolution requires an oversampling of 6"); | ||
| return -EINVAL; | ||
| } | ||
| ADC_RESSEL(adc) = ADC_RESSEL_16BIT; | ||
| break; | ||
| case 16: | ||
| if (sequence->oversampling != 8U) { | ||
| LOG_ERR("16 bit resolution requires an oversampling of 8"); | ||
| return -EINVAL; | ||
| } | ||
| ADC_RESSEL(adc) = ADC_RESSEL_16BIT; | ||
| break; | ||
| default: | ||
| LOG_ERR("ADC resolution value %d is not valid", | ||
|
|
||
Oops, something went wrong.
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.


Uh oh!
There was an error while loading. Please reload this page.
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.
please make the commit title clear that this is specific to sam, ie it should start with
drivers: adc_sam0: