-
Notifications
You must be signed in to change notification settings - Fork 113
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:ad5592r: Added Rx method #625
Conversation
2f8cf95
to
b4a148c
Compare
Hi, are there any comments on this PR @tfcollins |
0af9159
to
47abfb1
Compare
Hi @tfcollins , I have fixed all the checks that were failing now, and the PR is ready for review. |
adi/ad5592r.py
Outdated
# Dynamically get channels after the index | ||
for ch in self._ctrl.channels: | ||
name = ch._id | ||
print(name) |
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.
Remove print
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.
Need print removed. Can you provide an emulation context for this device with the new buffer interface?
This feature is not available on the linux driver for ad5592r as far as i know. Having this in, while the linux driver doesn't support it can cause confusion in my opinion. Alternatively the Rx component should be added only if it's discovered by pyadi-iio(if the driver supports it). I think this is beyond the scope of this PR .. (I've been using this part for a project myself) |
Since this is dependent on the driver the best way to handle it would be to override the rx method if the buffer or scan element based channels do not exist. That is easy enough to query like: buffers_avail = any([c.scan_element for c in self._rxadc.channels])
if not buffer_avail:
delattr(self, 'rx') |
Added rx method for data capture Updated emu file. Signed-off-by: Disha D <[email protected]>
Hi @tfcollins all my tests are passing and I addressed the review comments. Can you please take a look |
Added rx method for data capture
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: