-
Notifications
You must be signed in to change notification settings - Fork 1.5k
drivers/analog/ads1115.h: Add ioctl for conversion trigger #16715
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
linguini1
merged 2 commits into
apache:master
from
CarletonURocketry:ads1115_conversion_trigger
Jul 14, 2025
Merged
drivers/analog/ads1115.h: Add ioctl for conversion trigger #16715
linguini1
merged 2 commits into
apache:master
from
CarletonURocketry:ads1115_conversion_trigger
Jul 14, 2025
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
06b7c9f to
2dc341d
Compare
Contributor
Author
|
I don't believe the build failure is a result of these changes. |
acassis
reviewed
Jul 12, 2025
Since the ADS1115 has a relative slow conversion rate, this additional ioctl command makes it possible to trigger a conversion before reading the reading the conversion result, allowing the user to perform other computation in between instead of waiting for the conversion time to complete. It improves sampling time. Signed-off-by: Matteo Golin <matteo.golin@gmail.com>
Updates the ADS1115 documentation with information about the two new commands for triggering conversion and reading the result. Signed-off-by: Matteo Golin <matteo.golin@gmail.com>
2dc341d to
a9267c0
Compare
acassis
approved these changes
Jul 12, 2025
xiaoxiang781216
approved these changes
Jul 13, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Area: Documentation
Improvements or additions to documentation
Area: Drivers
Drivers issues
Size: L
The size of the change in this PR is large
Size: M
The size of the change in this PR is medium
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.
Summary
Since the ADS1115 has a relatively slow conversion rate, this additional ioctl command makes it possible to trigger a conversion before reading the reading the conversion result, allowing the user to perform other computation in between instead of waiting for the conversion time to complete. It improves sampling time.
Impact
Users can parallelize sampling of the ADS1115 ADC to avoid delays from sleeping while waiting for the conversion time duration.
Testing
Tested on a rocketry system with 4 ADS1115s in the sensor array. This change allowed parallezation to speed up sampling from 10Hz to 15Hz per channel per ADC.
@bskdany performed this testing, as did I.