Skip to content
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

Merged
merged 1 commit into from
Mar 18, 2025
Merged

Conversation

D-Disha
Copy link
Contributor

@D-Disha D-Disha commented Jan 22, 2025

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.

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • This change requires a documentation update

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 A
  • Test B

Test Configuration:

  • Hardware:
  • OS:

Documentation

If this is a new feature or example please mention or link any documentation. All new hardware interface classes require documentation.

Checklist:

  • My code follows the style guidelines of this project
  • I have performed a self-review of my own code
  • I have commented my code, particularly in hard-to-understand areas
  • I have signed off all commits and they contain "Signed-off by: "
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings
  • I have added tests that prove my fix is effective or that my feature works
  • New and existing unit tests pass locally with my changes
  • Any dependent changes have been merged and published in downstream modules

@D-Disha D-Disha force-pushed the ad559xr branch 2 times, most recently from 2f8cf95 to b4a148c Compare January 22, 2025 05:28
@D-Disha
Copy link
Contributor Author

D-Disha commented Jan 27, 2025

Hi, are there any comments on this PR @tfcollins

@D-Disha D-Disha force-pushed the ad559xr branch 3 times, most recently from 0af9159 to 47abfb1 Compare February 3, 2025 05:05
@D-Disha
Copy link
Contributor Author

D-Disha commented Feb 3, 2025

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)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove print

Copy link
Collaborator

@tfcollins tfcollins left a 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?

@adisuciu
Copy link
Contributor

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 ..

image

(I've been using this part for a project myself)

@tfcollins
Copy link
Collaborator

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]>
@D-Disha
Copy link
Contributor Author

D-Disha commented Mar 18, 2025

Hi @tfcollins all my tests are passing and I addressed the review comments. Can you please take a look

@tfcollins tfcollins merged commit 87cea73 into analogdevicesinc:main Mar 18, 2025
25 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants