-
Notifications
You must be signed in to change notification settings - Fork 103
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
adi:ad7134: Add support for ad7134 #578
adi:ad7134: Add support for ad7134 #578
Conversation
e6fc483
to
48c389f
Compare
Changelog: Fixed pylint and build errors |
@tfcollins - Could you please review these changes when you get a chance? |
supported_parts.md
Outdated
@@ -70,6 +70,8 @@ | |||
- AD5940 | |||
- AD6676 | |||
- AD7124 | |||
- AD7134 | |||
- AD4134 |
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 put these in numeric order
adi/ad7134.py
Outdated
# Copyright (C) 2024 Analog Devices, Inc. | ||
# | ||
# SPDX short identifier: ADIBSD | ||
# Copyright (C) 2024 Analog Devices, Inc. |
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.
Full license not needed. Just the SPDX
adi/ad7134.py
Outdated
""" AD7134 ADC """ | ||
|
||
_complex_data = False | ||
channel = [] # type: ignore |
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.
Should be called "channels". Needs to be reset/initialized in the constructor similar to the issue in the related PR
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.
Only minor issues to fix
1. Add pyadi driver for ad7134 family 2. Add example script for data capture with AD7134 3. Add documentation changes
48c389f
to
4352b32
Compare
Changelog: Addressed review comments
|
@tfcollins - Do these changes look good now? |
Description
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
Fixes # (issue)
Type of change
Please delete options that are not relevant.
How has this been tested?
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration
Test Configuration:
Documentation
If this is a new feature or example please mention or link any documentation. All new hardware interface classes require documentation.
Checklist: