-
Notifications
You must be signed in to change notification settings - Fork 21
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
feat: Added Full python API support for MDO3 model. #349
base: main
Are you sure you want to change the base?
Conversation
@@ -26,6 +26,7 @@ Things to be included in the next release go here. | |||
- Added the `get_errors()` method to the `Device` class to enable easy access to the current error code and messages on any device. | |||
- Added more details to the Architectural Overview page of the documentation as well as highlighting to the device driver diagram on the page. | |||
- Added regex matching to the `verify_values()` helper function to allow for more flexible value verification. | |||
- Full Python API support for MDO3 model. |
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 Python API support for MDO3 model. | |
- Full Python API support for the MDO3 model. |
Commands and Queries: | ||
``` | ||
- MARK {NEXT|PREVious} | ||
- MARK:CREATE {CH<x>|MATH|REF1|REF2|REF3|REF4|B1|B2|B3|B4|REF1|REF2|REF3|REF4|DIGital|COLUMN|RF_AMPlitude|RF_FREQuency|RF_PHASe} |
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.
Why does this have create but not delete?
Commands and Queries: | ||
``` | ||
- MARK {NEXT|PREVious} | ||
- MARK:DELEte {CH<x>|MATH|REF1|REF2|REF3|REF4|B1|B2|B3|B4|REF1|REF2|REF3|REF4|DIGital|COLUMN|SELECTED|ALL||RF_AMPlitude|RF_FREQuency|RF_PHASe} |
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.
Why does this have delete but not create?
phase measurement. This is equivalent to setting the 'To:' waveform in the 'Measure | ||
Delay' side menu or the 'Measure Phase' side menu. Measurements are specified by <x>, | ||
which ranges from 1 to 8. | ||
'from'. This is equivalent to setting the 'From:' waveform in the 'Measure Delay' |
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.
Why the extra whitespace? This probably happened in more than one place.
@@ -1117,42 +1078,6 @@ def polarity(self) -> SearchSearchItemTriggerATimeoutPolarity: | |||
""" | |||
return self._polarity | |||
|
|||
@property | |||
def source(self) -> SearchSearchItemTriggerATimeoutSource: | |||
"""Return the ``SEARCH:SEARCH<x>:TRIGger:A:TIMEOut:SOUrce`` command. |
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.
What happened to this command?
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.
This command is available in MDO, MSO, LPDMSO and TekscopePC.
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.
So why was it removed from here?
Proposed changes
Please include a summary of the changes and any links to related issues. Please also include relevant motivation and context.
Addresses #< fill in issue number here >
Types of changes
What types of changes does your code introduce?
Put an
x
in the boxes that applyChecklist
Put an
x
in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your code.Addresses #<issue_number>