diff --git a/CHANGELOG.md b/CHANGELOG.md
index 02058e03..33a2b129 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -18,6 +18,14 @@ Valid subsections within a version are:
Things to be included in the next release go here.
+### Added
+
+- Full Python API support for SourceXpress to AWG70KA, AWG70KB and AWG7K models.
+
+### Fixed
+
+- Fixed APIs with writes and queries accepting arguments for AWG70KA and AWG70KB models drivers.
+
---
## v2.0.0 (2024-07-24)
diff --git a/README.md b/README.md
index 2587922e..6e4c5b38 100644
--- a/README.md
+++ b/README.md
@@ -85,8 +85,8 @@ _Device Support Levels_
| | **AFG31xxx** | PI | ✅ | |
| AWGs | **AWG5000** | PI | ✅ | |
| | **AWG5200** | PI | ✅ | |
-| | **AWG7000** | PI | ✅ | |
-| | **AWG70000** | PI | ✅ | |
+| | **AWG7000** | PI | ✅ | ✅ |
+| | **AWG70000** | PI | ✅ | ✅ |
| Scopes | **2 Series MSO** | PI | ✅ | ✅ |
| | **3 Series MDO** | PI | ✅ | |
| | **4 Series MSO** | PI | ✅ | ✅ |
@@ -148,6 +148,7 @@ _Software Solution Support Levels_
| Software
Solution | Command
Type | Basic
Control | Python API
Validation
Status |
| -------------------- | --------------- | ---------------- | ---------------------------------- |
| DPOJET | PI | ✅ | ✅ |
+| SourceXpress | PI | ✅ | ✅ |
diff --git a/docs/glossary.md b/docs/glossary.md
index 6efa5dc5..2266cd05 100644
--- a/docs/glossary.md
+++ b/docs/glossary.md
@@ -83,6 +83,9 @@ SESR
SMU
: Source Measure Unit
+SourceXpress
+: An application to load and play waveforms remotely for Tektronix Arbitrary Waveform Generators
+
SRQ
: Service Request
diff --git a/docs/macros.py b/docs/macros.py
index bdde1d88..e2109596 100644
--- a/docs/macros.py
+++ b/docs/macros.py
@@ -28,6 +28,7 @@
(" TSP ", " "),
(" API ", " "),
(" DPOJET ", " "),
+ (" SourceXpress ", " "),
(" ✅ ", " [](default:✅) "),
(" 🚧 ", " [](default:🚧) "),
(" ❌ ", " [](default:❌) "),
diff --git a/examples/signal_generators/awgs/awg70k_example.py b/examples/signal_generators/awgs/awg70k_example.py
new file mode 100644
index 00000000..6f5885eb
--- /dev/null
+++ b/examples/signal_generators/awgs/awg70k_example.py
@@ -0,0 +1,29 @@
+"""An example script for AWG70K compiling sine waveform, name the waveform and play it."""
+
+from tm_devices import DeviceManager
+from tm_devices.drivers import AWG70KB
+from tm_devices.helpers import PYVISA_PY_BACKEND
+
+with DeviceManager(verbose=True) as device_manager:
+ # Disable resetting the devices when connecting and closing
+ device_manager.setup_cleanup_enabled = False
+ device_manager.teardown_cleanup_enabled = False
+
+ # Use the PyVISA-py backend
+ device_manager.visa_library = PYVISA_PY_BACKEND
+
+ # Creating Scope driver object by providing ip address.
+ scope: AWG70KB = device_manager.add_awg("127.0.0.1")
+
+ # Sets the Basic Waveform editor plug-in waveform type.
+ scope.commands.bwaveform.function.write("SINE")
+ # Sets the peak-to-peak Amplitude value for the waveform created by the Basic Waveform
+ # editor plug-in.
+ scope.commands.bwaveform.amplitude.write(250.0e-3)
+ # Sets the Sample Rate for the waveform created by the Basic Waveform editor plug-in.
+ scope.commands.bwaveform.srate.write(2.0e9)
+ # Sets the name of the Basic Waveform editor plug-in compiled waveform.
+ scope.commands.bwaveform.compile.name.write("Basic_Wfm_sine")
+ # Enabled the state of the Basic Waveform editor to either immediately play the waveform
+ # after compile or just compile
+ scope.commands.bwaveform.compile.play.write("ON")
diff --git a/src/tm_devices/commands/awg5200_commands.py b/src/tm_devices/commands/awg5200_commands.py
index 084d27e5..3f168fd5 100644
--- a/src/tm_devices/commands/awg5200_commands.py
+++ b/src/tm_devices/commands/awg5200_commands.py
@@ -15,6 +15,7 @@
from .gen_2i1z2s_awg.bwaveform import Bwaveform
from .gen_2i1z2s_awg.clock import Clock
from .gen_2i1z2s_awg.cplayback import Cplayback
+from .gen_2i1z2s_awg.diagnostic import Diagnostic
from .gen_2i1z2s_awg.fgen import Fgen
from .gen_2i1z2s_awg.instrument import Instrument
from .gen_2i1z2s_awg.mmemory import Mmemory
@@ -26,7 +27,7 @@
from .gen_2i1z2s_awg.wlist import Wlist
from .gen_3n9auv_awg.active import Active
from .gen_3n9auv_awg.calibration import Calibration
-from .gen_3n9auv_awg.diagnostic import Diagnostic
+from .gen_3n9auv_awg.connectivity import Connectivity
from .gen_3n9auv_awg.display import Display
from .gen_3n9auv_awg.output import Output
from .gen_3n9auv_awg.slist import Slist
@@ -85,6 +86,7 @@ class AWG5200Commands:
- ``.calibration``: The ``CALibration`` command tree.
- ``.clock``: The ``CLOCk`` command tree.
- ``.cls``: The ``*CLS`` command.
+ - ``.connectivity``: The ``CONNectivity`` command tree.
- ``.cplayback``: The ``CPLayback`` command tree.
- ``.diagnostic``: The ``DIAGnostic`` command tree.
- ``.display``: The ``DISPlay`` command tree.
@@ -127,6 +129,7 @@ def __init__(self, device: Optional[PIDevice] = None) -> None:
self._calibration = Calibration(device)
self._clock = Clock(device)
self._cls = Cls(device)
+ self._connectivity = Connectivity(device)
self._cplayback = Cplayback(device)
self._diagnostic = Diagnostic(device)
self._display = Display(device)
@@ -346,6 +349,25 @@ def cls(self) -> Cls:
"""
return self._cls
+ @property
+ def connectivity(self) -> Connectivity:
+ """Return the ``CONNectivity`` command tree.
+
+ Usage:
+ - Using the ``.query()`` method will send the ``CONNectivity?`` query.
+ - Using the ``.verify(value)`` method will send the ``CONNectivity?`` query and raise an
+ AssertionError if the returned value does not match ``value``.
+
+ Sub-properties:
+ - ``.active``: The ``CONNectivity:ACTive`` command.
+ - ``.connect``: The ``CONNectivity:CONNect`` command.
+ - ``.disconnect``: The ``CONNectivity:DISConnect`` command.
+ - ``.gang``: The ``CONNectivity:GANG`` command tree.
+ - ``.remove``: The ``CONNectivity:REMove`` command.
+ - ``.status``: The ``CONNectivity:STATus`` command.
+ """
+ return self._connectivity
+
@property
def cplayback(self) -> Cplayback:
"""Return the ``CPLayback`` command tree.
@@ -778,6 +800,8 @@ def synchronize(self) -> Synchronize:
AssertionError if the returned value does not match ``value``.
Sub-properties:
+ - ``.adjust``: The ``SYNChronize:ADJust`` command tree.
+ - ``.deskew``: The ``SYNChronize:DESKew`` command tree.
- ``.enable``: The ``SYNChronize:ENABle`` command.
- ``.type``: The ``SYNChronize:TYPE`` command.
"""
@@ -952,6 +976,7 @@ def commands(self) -> AWG5200Commands:
- ``.calibration``: The ``CALibration`` command tree.
- ``.clock``: The ``CLOCk`` command tree.
- ``.cls``: The ``*CLS`` command.
+ - ``.connectivity``: The ``CONNectivity`` command tree.
- ``.cplayback``: The ``CPLayback`` command tree.
- ``.diagnostic``: The ``DIAGnostic`` command tree.
- ``.display``: The ``DISPlay`` command tree.
diff --git a/src/tm_devices/commands/awg70ka_commands.py b/src/tm_devices/commands/awg70ka_commands.py
index 041f3ae6..49c5ef3f 100644
--- a/src/tm_devices/commands/awg70ka_commands.py
+++ b/src/tm_devices/commands/awg70ka_commands.py
@@ -11,7 +11,7 @@
from .gen_3n9auv_awg.active import Active
from .gen_3n9auv_awg.calibration import Calibration
-from .gen_3n9auv_awg.diagnostic import Diagnostic
+from .gen_3n9auv_awg.connectivity import Connectivity
from .gen_3n9auv_awg.display import Display
from .gen_3n9auv_awg.output import Output
from .gen_3n9auv_awg.slist import Slist
@@ -22,6 +22,7 @@
from .gen_3rs8qy_awg.bwaveform import Bwaveform
from .gen_3rs8qy_awg.clock import Clock
from .gen_3rs8qy_awg.cplayback import Cplayback
+from .gen_3rs8qy_awg.diagnostic import Diagnostic
from .gen_3rs8qy_awg.fgen import Fgen
from .gen_3rs8qy_awg.instrument import Instrument
from .gen_3rs8qy_awg.mmemory import Mmemory
@@ -84,6 +85,7 @@ class AWG70KACommands:
- ``.calibration``: The ``CALibration`` command tree.
- ``.clock``: The ``CLOCk`` command tree.
- ``.cls``: The ``*CLS`` command.
+ - ``.connectivity``: The ``CONNectivity`` command tree.
- ``.cplayback``: The ``CPLayback`` command tree.
- ``.diagnostic``: The ``DIAGnostic`` command tree.
- ``.display``: The ``DISPlay`` command tree.
@@ -125,6 +127,7 @@ def __init__(self, device: Optional[PIDevice] = None) -> None:
self._calibration = Calibration(device)
self._clock = Clock(device)
self._cls = Cls(device)
+ self._connectivity = Connectivity(device)
self._cplayback = Cplayback(device)
self._diagnostic = Diagnostic(device)
self._display = Display(device)
@@ -331,6 +334,25 @@ def cls(self) -> Cls:
"""
return self._cls
+ @property
+ def connectivity(self) -> Connectivity:
+ """Return the ``CONNectivity`` command tree.
+
+ Usage:
+ - Using the ``.query()`` method will send the ``CONNectivity?`` query.
+ - Using the ``.verify(value)`` method will send the ``CONNectivity?`` query and raise an
+ AssertionError if the returned value does not match ``value``.
+
+ Sub-properties:
+ - ``.active``: The ``CONNectivity:ACTive`` command.
+ - ``.connect``: The ``CONNectivity:CONNect`` command.
+ - ``.disconnect``: The ``CONNectivity:DISConnect`` command.
+ - ``.gang``: The ``CONNectivity:GANG`` command tree.
+ - ``.remove``: The ``CONNectivity:REMove`` command.
+ - ``.status``: The ``CONNectivity:STATus`` command.
+ """
+ return self._connectivity
+
@property
def cplayback(self) -> Cplayback:
"""Return the ``CPLayback`` command tree.
@@ -938,6 +960,7 @@ def commands(self) -> AWG70KACommands:
- ``.calibration``: The ``CALibration`` command tree.
- ``.clock``: The ``CLOCk`` command tree.
- ``.cls``: The ``*CLS`` command.
+ - ``.connectivity``: The ``CONNectivity`` command tree.
- ``.cplayback``: The ``CPLayback`` command tree.
- ``.diagnostic``: The ``DIAGnostic`` command tree.
- ``.display``: The ``DISPlay`` command tree.
diff --git a/src/tm_devices/commands/awg70kb_commands.py b/src/tm_devices/commands/awg70kb_commands.py
index d92cc0a4..8537c4b9 100644
--- a/src/tm_devices/commands/awg70kb_commands.py
+++ b/src/tm_devices/commands/awg70kb_commands.py
@@ -11,7 +11,7 @@
from .gen_3n9auv_awg.active import Active
from .gen_3n9auv_awg.calibration import Calibration
-from .gen_3n9auv_awg.diagnostic import Diagnostic
+from .gen_3n9auv_awg.connectivity import Connectivity
from .gen_3n9auv_awg.display import Display
from .gen_3n9auv_awg.output import Output
from .gen_3n9auv_awg.slist import Slist
@@ -22,6 +22,7 @@
from .gen_3rs8qy_awg.bwaveform import Bwaveform
from .gen_3rs8qy_awg.clock import Clock
from .gen_3rs8qy_awg.cplayback import Cplayback
+from .gen_3rs8qy_awg.diagnostic import Diagnostic
from .gen_3rs8qy_awg.fgen import Fgen
from .gen_3rs8qy_awg.instrument import Instrument
from .gen_3rs8qy_awg.mmemory import Mmemory
@@ -84,6 +85,7 @@ class AWG70KBCommands:
- ``.calibration``: The ``CALibration`` command tree.
- ``.clock``: The ``CLOCk`` command tree.
- ``.cls``: The ``*CLS`` command.
+ - ``.connectivity``: The ``CONNectivity`` command tree.
- ``.cplayback``: The ``CPLayback`` command tree.
- ``.diagnostic``: The ``DIAGnostic`` command tree.
- ``.display``: The ``DISPlay`` command tree.
@@ -125,6 +127,7 @@ def __init__(self, device: Optional[PIDevice] = None) -> None:
self._calibration = Calibration(device)
self._clock = Clock(device)
self._cls = Cls(device)
+ self._connectivity = Connectivity(device)
self._cplayback = Cplayback(device)
self._diagnostic = Diagnostic(device)
self._display = Display(device)
@@ -331,6 +334,25 @@ def cls(self) -> Cls:
"""
return self._cls
+ @property
+ def connectivity(self) -> Connectivity:
+ """Return the ``CONNectivity`` command tree.
+
+ Usage:
+ - Using the ``.query()`` method will send the ``CONNectivity?`` query.
+ - Using the ``.verify(value)`` method will send the ``CONNectivity?`` query and raise an
+ AssertionError if the returned value does not match ``value``.
+
+ Sub-properties:
+ - ``.active``: The ``CONNectivity:ACTive`` command.
+ - ``.connect``: The ``CONNectivity:CONNect`` command.
+ - ``.disconnect``: The ``CONNectivity:DISConnect`` command.
+ - ``.gang``: The ``CONNectivity:GANG`` command tree.
+ - ``.remove``: The ``CONNectivity:REMove`` command.
+ - ``.status``: The ``CONNectivity:STATus`` command.
+ """
+ return self._connectivity
+
@property
def cplayback(self) -> Cplayback:
"""Return the ``CPLayback`` command tree.
@@ -938,6 +960,7 @@ def commands(self) -> AWG70KBCommands:
- ``.calibration``: The ``CALibration`` command tree.
- ``.clock``: The ``CLOCk`` command tree.
- ``.cls``: The ``*CLS`` command.
+ - ``.connectivity``: The ``CONNectivity`` command tree.
- ``.cplayback``: The ``CPLayback`` command tree.
- ``.diagnostic``: The ``DIAGnostic`` command tree.
- ``.display``: The ``DISPlay`` command tree.
diff --git a/src/tm_devices/commands/dpo2k_commands.py b/src/tm_devices/commands/dpo2k_commands.py
index 445db014..d4044176 100644
--- a/src/tm_devices/commands/dpo2k_commands.py
+++ b/src/tm_devices/commands/dpo2k_commands.py
@@ -14,12 +14,10 @@
from .gen_1lcv3a_msodpomdo.setup_1 import SetupItem
from .gen_1nmc1o_msodpomdo.clearmenu import Clearmenu
from .gen_1nmc1o_msodpomdo.errlog import Errlog
-from .gen_1nmc1o_msodpomdo.header import Header
from .gen_1nmc1o_msodpomdo.language import Language
from .gen_1nmc1o_msodpomdo.status_and_error import Psc
from .gen_1nmc1o_msodpomdo.usbdevice import Usbdevice
from .gen_1nmc1o_msodpomdo.usbtmc import Usbtmc
-from .gen_1nmc1o_msodpomdo.verbose import Verbose
from .gen_e6lgg1_lpdmsodpomdo.totaluptime import Totaluptime
from .gen_fhrp27_msodpomdodsa.curve import Curve
from .gen_fhrp27_msodpomdodsa.date import Date
@@ -37,6 +35,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.evmsg import Evmsg
from .gen_fx54ua_lpdmsodpomdodsa.evqty import Evqty
from .gen_fx54ua_lpdmsodpomdodsa.factory import Factory
+from .gen_fx54ua_lpdmsodpomdodsa.header import Header
from .gen_fx54ua_lpdmsodpomdodsa.id import Id
from .gen_fx54ua_lpdmsodpomdodsa.miscellaneous import Ddt, Lrn
from .gen_fx54ua_lpdmsodpomdodsa.newpass import Newpass
@@ -45,6 +44,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.set import Set
from .gen_fx54ua_lpdmsodpomdodsa.status_and_error import Pud
from .gen_fx54ua_lpdmsodpomdodsa.teksecure import Teksecure
+from .gen_fx54ua_lpdmsodpomdodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.wavfrm import Wavfrm
from .gen_fzn174_lpdmsodpomdodsa.lock import Lock
from .gen_fzn174_lpdmsodpomdodsa.unlock import Unlock
@@ -664,7 +664,7 @@ def alias(self) -> Alias:
SCPI Syntax:
```
- - ALIas {OFF|ON|}
+ - ALIas {ON|OFF|}
- ALIas?
```
@@ -1484,8 +1484,10 @@ def header(self) -> Header:
"""Return the ``HEADer`` command.
Description:
- - This command specifies the Response Header Enable State that causes the oscilloscope
- to either include or omit headers on query responses.
+ - This command sets or queries the Response Header Enable State that causes the
+ instrument to either include or omit headers on query responses. Whether the long or
+ short form of header keywords and enumerations are returned is dependent upon the
+ state of ``:VERBose``.
Usage:
- Using the ``.query()`` method will send the ``HEADer?`` query.
@@ -1495,18 +1497,18 @@ def header(self) -> Header:
SCPI Syntax:
```
- - HEADer {OFF|ON|}
+ - HEADer {ON|OFF|}
- HEADer?
```
Info:
- - ``OFF`` sets the Response Header Enable State to false. This causes the oscilloscope
- to omit headers on query responses, so that only the argument is returned.
- - ``ON`` sets the Response Header Enable State to true. This causes the oscilloscope to
- include headers on applicable query responses. You can then use the query response as
- a command.
- ```` = 0 sets the Response Header Enable State to false; any other value sets
this state to true.
+ - ``OFF`` sets the Response Header Enable State to false. This causes the instrument to
+ omit headers on query responses, so that only the argument is returned.
+ - ``ON`` sets the Response Header Enable State to true. This causes the instrument to
+ include headers on applicable query responses. You can then use the query response as
+ a command.
"""
return self._header
@@ -2474,24 +2476,23 @@ def verbose(self) -> Verbose:
"""Return the ``VERBose`` command.
Description:
- - This command specifies the Verbose state that controls the length of keywords on query
- responses. Keywords can be both headers and arguments.
+ - This command sets or queries the Verbose state that controls the length of keywords on
+ query responses. Keywords can be both headers and arguments.
Usage:
- Using the ``.write(value)`` method will send the ``VERBose value`` command.
SCPI Syntax:
```
- - VERBose {OFF|ON|}
+ - VERBose {ON|OFF|}
```
Info:
+ - ```` = 0 disables Verbose, any other value enables Verbose.
- ``OFF`` sets the Verbose state to false, which returns minimum-length keywords for
applicable setting queries.
- ``ON`` sets the Verbose state to true, which returns full-length keywords for
applicable setting queries.
- - ```` a 0 returns minimum-length keywords for applicable setting queries; any
- other value returns full-length keywords.
"""
return self._verbose
diff --git a/src/tm_devices/commands/dpo2kb_commands.py b/src/tm_devices/commands/dpo2kb_commands.py
index 66ee57b6..30e44aad 100644
--- a/src/tm_devices/commands/dpo2kb_commands.py
+++ b/src/tm_devices/commands/dpo2kb_commands.py
@@ -14,12 +14,10 @@
from .gen_1lcv3a_msodpomdo.setup_1 import SetupItem
from .gen_1nmc1o_msodpomdo.clearmenu import Clearmenu
from .gen_1nmc1o_msodpomdo.errlog import Errlog
-from .gen_1nmc1o_msodpomdo.header import Header
from .gen_1nmc1o_msodpomdo.language import Language
from .gen_1nmc1o_msodpomdo.status_and_error import Psc
from .gen_1nmc1o_msodpomdo.usbdevice import Usbdevice
from .gen_1nmc1o_msodpomdo.usbtmc import Usbtmc
-from .gen_1nmc1o_msodpomdo.verbose import Verbose
from .gen_e6lgg1_lpdmsodpomdo.totaluptime import Totaluptime
from .gen_fhrp27_msodpomdodsa.curve import Curve
from .gen_fhrp27_msodpomdodsa.date import Date
@@ -37,6 +35,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.evmsg import Evmsg
from .gen_fx54ua_lpdmsodpomdodsa.evqty import Evqty
from .gen_fx54ua_lpdmsodpomdodsa.factory import Factory
+from .gen_fx54ua_lpdmsodpomdodsa.header import Header
from .gen_fx54ua_lpdmsodpomdodsa.id import Id
from .gen_fx54ua_lpdmsodpomdodsa.miscellaneous import Ddt, Lrn
from .gen_fx54ua_lpdmsodpomdodsa.newpass import Newpass
@@ -45,6 +44,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.set import Set
from .gen_fx54ua_lpdmsodpomdodsa.status_and_error import Pud
from .gen_fx54ua_lpdmsodpomdodsa.teksecure import Teksecure
+from .gen_fx54ua_lpdmsodpomdodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.wavfrm import Wavfrm
from .gen_fzn174_lpdmsodpomdodsa.lock import Lock
from .gen_fzn174_lpdmsodpomdodsa.unlock import Unlock
@@ -664,7 +664,7 @@ def alias(self) -> Alias:
SCPI Syntax:
```
- - ALIas {OFF|ON|}
+ - ALIas {ON|OFF|}
- ALIas?
```
@@ -1484,8 +1484,10 @@ def header(self) -> Header:
"""Return the ``HEADer`` command.
Description:
- - This command specifies the Response Header Enable State that causes the oscilloscope
- to either include or omit headers on query responses.
+ - This command sets or queries the Response Header Enable State that causes the
+ instrument to either include or omit headers on query responses. Whether the long or
+ short form of header keywords and enumerations are returned is dependent upon the
+ state of ``:VERBose``.
Usage:
- Using the ``.query()`` method will send the ``HEADer?`` query.
@@ -1495,18 +1497,18 @@ def header(self) -> Header:
SCPI Syntax:
```
- - HEADer {OFF|ON|}
+ - HEADer {ON|OFF|}
- HEADer?
```
Info:
- - ``OFF`` sets the Response Header Enable State to false. This causes the oscilloscope
- to omit headers on query responses, so that only the argument is returned.
- - ``ON`` sets the Response Header Enable State to true. This causes the oscilloscope to
- include headers on applicable query responses. You can then use the query response as
- a command.
- ```` = 0 sets the Response Header Enable State to false; any other value sets
this state to true.
+ - ``OFF`` sets the Response Header Enable State to false. This causes the instrument to
+ omit headers on query responses, so that only the argument is returned.
+ - ``ON`` sets the Response Header Enable State to true. This causes the instrument to
+ include headers on applicable query responses. You can then use the query response as
+ a command.
"""
return self._header
@@ -2474,24 +2476,23 @@ def verbose(self) -> Verbose:
"""Return the ``VERBose`` command.
Description:
- - This command specifies the Verbose state that controls the length of keywords on query
- responses. Keywords can be both headers and arguments.
+ - This command sets or queries the Verbose state that controls the length of keywords on
+ query responses. Keywords can be both headers and arguments.
Usage:
- Using the ``.write(value)`` method will send the ``VERBose value`` command.
SCPI Syntax:
```
- - VERBose {OFF|ON|}
+ - VERBose {ON|OFF|}
```
Info:
+ - ```` = 0 disables Verbose, any other value enables Verbose.
- ``OFF`` sets the Verbose state to false, which returns minimum-length keywords for
applicable setting queries.
- ``ON`` sets the Verbose state to true, which returns full-length keywords for
applicable setting queries.
- - ```` a 0 returns minimum-length keywords for applicable setting queries; any
- other value returns full-length keywords.
"""
return self._verbose
diff --git a/src/tm_devices/commands/dpo4k_commands.py b/src/tm_devices/commands/dpo4k_commands.py
index bcfa481a..b768f4d2 100644
--- a/src/tm_devices/commands/dpo4k_commands.py
+++ b/src/tm_devices/commands/dpo4k_commands.py
@@ -63,12 +63,10 @@
from .gen_1mq0z9_msodpo.rf import Rf
from .gen_1nmc1o_msodpomdo.clearmenu import Clearmenu
from .gen_1nmc1o_msodpomdo.errlog import Errlog
-from .gen_1nmc1o_msodpomdo.header import Header
from .gen_1nmc1o_msodpomdo.language import Language
from .gen_1nmc1o_msodpomdo.status_and_error import Psc
from .gen_1nmc1o_msodpomdo.usbdevice import Usbdevice
from .gen_1nmc1o_msodpomdo.usbtmc import Usbtmc
-from .gen_1nmc1o_msodpomdo.verbose import Verbose
from .gen_e6lgg1_lpdmsodpomdo.totaluptime import Totaluptime
from .gen_e6606z_lpdmsomdodpo.pause import Pause
from .gen_fhrp27_msodpomdodsa.curve import Curve
@@ -87,6 +85,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.evmsg import Evmsg
from .gen_fx54ua_lpdmsodpomdodsa.evqty import Evqty
from .gen_fx54ua_lpdmsodpomdodsa.factory import Factory
+from .gen_fx54ua_lpdmsodpomdodsa.header import Header
from .gen_fx54ua_lpdmsodpomdodsa.id import Id
from .gen_fx54ua_lpdmsodpomdodsa.miscellaneous import Ddt, Lrn
from .gen_fx54ua_lpdmsodpomdodsa.newpass import Newpass
@@ -95,6 +94,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.set import Set
from .gen_fx54ua_lpdmsodpomdodsa.status_and_error import Pud
from .gen_fx54ua_lpdmsodpomdodsa.teksecure import Teksecure
+from .gen_fx54ua_lpdmsodpomdodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.wavfrm import Wavfrm
from .gen_fzn174_lpdmsodpomdodsa.lock import Lock
from .gen_fzn174_lpdmsodpomdodsa.unlock import Unlock
@@ -1843,8 +1843,10 @@ def header(self) -> Header:
"""Return the ``HEADer`` command.
Description:
- - This command specifies the Response Header Enable State that causes the oscilloscope
- to either include or omit headers on query responses.
+ - This command sets or queries the Response Header Enable State that causes the
+ instrument to either include or omit headers on query responses. Whether the long or
+ short form of header keywords and enumerations are returned is dependent upon the
+ state of ``:VERBose``.
Usage:
- Using the ``.query()`` method will send the ``HEADer?`` query.
@@ -1854,18 +1856,18 @@ def header(self) -> Header:
SCPI Syntax:
```
- - HEADer {OFF|ON|}
+ - HEADer {ON|OFF|}
- HEADer?
```
Info:
- - ``OFF`` sets the Response Header Enable State to false. This causes the oscilloscope
- to omit headers on query responses, so that only the argument is returned.
- - ``ON`` sets the Response Header Enable State to true. This causes the oscilloscope to
- include headers on applicable query responses. You can then use the query response as
- a command.
- ```` = 0 sets the Response Header Enable State to false; any other value sets
this state to true.
+ - ``OFF`` sets the Response Header Enable State to false. This causes the instrument to
+ omit headers on query responses, so that only the argument is returned.
+ - ``ON`` sets the Response Header Enable State to true. This causes the instrument to
+ include headers on applicable query responses. You can then use the query response as
+ a command.
"""
return self._header
@@ -3072,24 +3074,23 @@ def verbose(self) -> Verbose:
"""Return the ``VERBose`` command.
Description:
- - This command specifies the Verbose state that controls the length of keywords on query
- responses. Keywords can be both headers and arguments.
+ - This command sets or queries the Verbose state that controls the length of keywords on
+ query responses. Keywords can be both headers and arguments.
Usage:
- Using the ``.write(value)`` method will send the ``VERBose value`` command.
SCPI Syntax:
```
- - VERBose {OFF|ON|}
+ - VERBose {ON|OFF|}
```
Info:
+ - ```` = 0 disables Verbose, any other value enables Verbose.
- ``OFF`` sets the Verbose state to false, which returns minimum-length keywords for
applicable setting queries.
- ``ON`` sets the Verbose state to true, which returns full-length keywords for
applicable setting queries.
- - ```` a 0 returns minimum-length keywords for applicable setting queries; any
- other value returns full-length keywords.
"""
return self._verbose
diff --git a/src/tm_devices/commands/dpo4kb_commands.py b/src/tm_devices/commands/dpo4kb_commands.py
index f1e42a63..0b424bba 100644
--- a/src/tm_devices/commands/dpo4kb_commands.py
+++ b/src/tm_devices/commands/dpo4kb_commands.py
@@ -63,12 +63,10 @@
from .gen_1mq0z9_msodpo.rf import Rf
from .gen_1nmc1o_msodpomdo.clearmenu import Clearmenu
from .gen_1nmc1o_msodpomdo.errlog import Errlog
-from .gen_1nmc1o_msodpomdo.header import Header
from .gen_1nmc1o_msodpomdo.language import Language
from .gen_1nmc1o_msodpomdo.status_and_error import Psc
from .gen_1nmc1o_msodpomdo.usbdevice import Usbdevice
from .gen_1nmc1o_msodpomdo.usbtmc import Usbtmc
-from .gen_1nmc1o_msodpomdo.verbose import Verbose
from .gen_e6lgg1_lpdmsodpomdo.totaluptime import Totaluptime
from .gen_e6606z_lpdmsomdodpo.pause import Pause
from .gen_fhrp27_msodpomdodsa.curve import Curve
@@ -87,6 +85,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.evmsg import Evmsg
from .gen_fx54ua_lpdmsodpomdodsa.evqty import Evqty
from .gen_fx54ua_lpdmsodpomdodsa.factory import Factory
+from .gen_fx54ua_lpdmsodpomdodsa.header import Header
from .gen_fx54ua_lpdmsodpomdodsa.id import Id
from .gen_fx54ua_lpdmsodpomdodsa.miscellaneous import Ddt, Lrn
from .gen_fx54ua_lpdmsodpomdodsa.newpass import Newpass
@@ -95,6 +94,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.set import Set
from .gen_fx54ua_lpdmsodpomdodsa.status_and_error import Pud
from .gen_fx54ua_lpdmsodpomdodsa.teksecure import Teksecure
+from .gen_fx54ua_lpdmsodpomdodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.wavfrm import Wavfrm
from .gen_fzn174_lpdmsodpomdodsa.lock import Lock
from .gen_fzn174_lpdmsodpomdodsa.unlock import Unlock
@@ -1851,8 +1851,10 @@ def header(self) -> Header:
"""Return the ``HEADer`` command.
Description:
- - This command specifies the Response Header Enable State that causes the oscilloscope
- to either include or omit headers on query responses.
+ - This command sets or queries the Response Header Enable State that causes the
+ instrument to either include or omit headers on query responses. Whether the long or
+ short form of header keywords and enumerations are returned is dependent upon the
+ state of ``:VERBose``.
Usage:
- Using the ``.query()`` method will send the ``HEADer?`` query.
@@ -1862,18 +1864,18 @@ def header(self) -> Header:
SCPI Syntax:
```
- - HEADer {OFF|ON|}
+ - HEADer {ON|OFF|}
- HEADer?
```
Info:
- - ``OFF`` sets the Response Header Enable State to false. This causes the oscilloscope
- to omit headers on query responses, so that only the argument is returned.
- - ``ON`` sets the Response Header Enable State to true. This causes the oscilloscope to
- include headers on applicable query responses. You can then use the query response as
- a command.
- ```` = 0 sets the Response Header Enable State to false; any other value sets
this state to true.
+ - ``OFF`` sets the Response Header Enable State to false. This causes the instrument to
+ omit headers on query responses, so that only the argument is returned.
+ - ``ON`` sets the Response Header Enable State to true. This causes the instrument to
+ include headers on applicable query responses. You can then use the query response as
+ a command.
"""
return self._header
@@ -3080,24 +3082,23 @@ def verbose(self) -> Verbose:
"""Return the ``VERBose`` command.
Description:
- - This command specifies the Verbose state that controls the length of keywords on query
- responses. Keywords can be both headers and arguments.
+ - This command sets or queries the Verbose state that controls the length of keywords on
+ query responses. Keywords can be both headers and arguments.
Usage:
- Using the ``.write(value)`` method will send the ``VERBose value`` command.
SCPI Syntax:
```
- - VERBose {OFF|ON|}
+ - VERBose {ON|OFF|}
```
Info:
+ - ```` = 0 disables Verbose, any other value enables Verbose.
- ``OFF`` sets the Verbose state to false, which returns minimum-length keywords for
applicable setting queries.
- ``ON`` sets the Verbose state to true, which returns full-length keywords for
applicable setting queries.
- - ```` a 0 returns minimum-length keywords for applicable setting queries; any
- other value returns full-length keywords.
"""
return self._verbose
diff --git a/src/tm_devices/commands/dpo5k_commands.py b/src/tm_devices/commands/dpo5k_commands.py
index 9df0ffa0..78d43647 100644
--- a/src/tm_devices/commands/dpo5k_commands.py
+++ b/src/tm_devices/commands/dpo5k_commands.py
@@ -85,9 +85,7 @@
from .gen_fteabn_lpdmsomdodpoafgawgdsa.status_and_error import Opt
from .gen_fug7nl_lpdmsodpomdoawgdsa.status_and_error import Ese, Sre
from .gen_fuzvln_lpdmsodpodsa.alias import Alias
-from .gen_fuzvln_lpdmsodpodsa.header import Header
from .gen_fuzvln_lpdmsodpodsa.status_and_error import Psc
-from .gen_fuzvln_lpdmsodpodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.allev import Allev
from .gen_fx54ua_lpdmsodpomdodsa.busy import Busy
from .gen_fx54ua_lpdmsodpomdodsa.dese import Dese
@@ -95,6 +93,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.evmsg import Evmsg
from .gen_fx54ua_lpdmsodpomdodsa.evqty import Evqty
from .gen_fx54ua_lpdmsodpomdodsa.factory import Factory
+from .gen_fx54ua_lpdmsodpomdodsa.header import Header
from .gen_fx54ua_lpdmsodpomdodsa.id import Id
from .gen_fx54ua_lpdmsodpomdodsa.miscellaneous import Ddt, Lrn
from .gen_fx54ua_lpdmsodpomdodsa.newpass import Newpass
@@ -103,6 +102,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.set import Set
from .gen_fx54ua_lpdmsodpomdodsa.status_and_error import Pud
from .gen_fx54ua_lpdmsodpomdodsa.teksecure import Teksecure
+from .gen_fx54ua_lpdmsodpomdodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.wavfrm import Wavfrm
from .gen_fzn174_lpdmsodpomdodsa.lock import Lock
from .gen_fzn174_lpdmsodpomdodsa.unlock import Unlock
@@ -1052,7 +1052,7 @@ def alias(self) -> Alias:
SCPI Syntax:
```
- - ALIas {OFF|ON|}
+ - ALIas {ON|OFF|}
- ALIas?
```
@@ -2203,7 +2203,7 @@ def hdr(self) -> Hdr:
SCPI Syntax:
```
- - HDR {|OFF|ON}
+ - HDR {ON|OFF|}
- HDR?
```
@@ -2236,7 +2236,7 @@ def header(self) -> Header:
SCPI Syntax:
```
- - HEADer {|OFF|ON}
+ - HEADer {ON|OFF|}
- HEADer?
```
@@ -2763,7 +2763,7 @@ def opcextended(self) -> Opcextended:
SCPI Syntax:
```
- - OPCEXtended {|OFF|ON}
+ - OPCEXtended {ON|OFF|}
- OPCEXtended?
```
@@ -2865,7 +2865,7 @@ def psc(self) -> Psc:
SCPI Syntax:
```
- - *PSC {|OFF|ON}
+ - *PSC {ON|OFF|}
- *PSC?
```
@@ -3527,7 +3527,7 @@ def verbose(self) -> Verbose:
SCPI Syntax:
```
- - VERBose {|OFF|ON}
+ - VERBose {ON|OFF|}
```
Info:
diff --git a/src/tm_devices/commands/dpo5kb_commands.py b/src/tm_devices/commands/dpo5kb_commands.py
index 6eadade6..af8ce01f 100644
--- a/src/tm_devices/commands/dpo5kb_commands.py
+++ b/src/tm_devices/commands/dpo5kb_commands.py
@@ -87,9 +87,7 @@
from .gen_fteabn_lpdmsomdodpoafgawgdsa.status_and_error import Opt
from .gen_fug7nl_lpdmsodpomdoawgdsa.status_and_error import Ese, Sre
from .gen_fuzvln_lpdmsodpodsa.alias import Alias
-from .gen_fuzvln_lpdmsodpodsa.header import Header
from .gen_fuzvln_lpdmsodpodsa.status_and_error import Psc
-from .gen_fuzvln_lpdmsodpodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.allev import Allev
from .gen_fx54ua_lpdmsodpomdodsa.busy import Busy
from .gen_fx54ua_lpdmsodpomdodsa.dese import Dese
@@ -97,6 +95,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.evmsg import Evmsg
from .gen_fx54ua_lpdmsodpomdodsa.evqty import Evqty
from .gen_fx54ua_lpdmsodpomdodsa.factory import Factory
+from .gen_fx54ua_lpdmsodpomdodsa.header import Header
from .gen_fx54ua_lpdmsodpomdodsa.id import Id
from .gen_fx54ua_lpdmsodpomdodsa.miscellaneous import Ddt, Lrn
from .gen_fx54ua_lpdmsodpomdodsa.newpass import Newpass
@@ -105,6 +104,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.set import Set
from .gen_fx54ua_lpdmsodpomdodsa.status_and_error import Pud
from .gen_fx54ua_lpdmsodpomdodsa.teksecure import Teksecure
+from .gen_fx54ua_lpdmsodpomdodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.wavfrm import Wavfrm
from .gen_fzn174_lpdmsodpomdodsa.lock import Lock
from .gen_fzn174_lpdmsodpomdodsa.unlock import Unlock
@@ -1062,7 +1062,7 @@ def alias(self) -> Alias:
SCPI Syntax:
```
- - ALIas {OFF|ON|}
+ - ALIas {ON|OFF|}
- ALIas?
```
@@ -2293,7 +2293,7 @@ def hdr(self) -> Hdr:
SCPI Syntax:
```
- - HDR {|OFF|ON}
+ - HDR {ON|OFF|}
- HDR?
```
@@ -2326,7 +2326,7 @@ def header(self) -> Header:
SCPI Syntax:
```
- - HEADer {|OFF|ON}
+ - HEADer {ON|OFF|}
- HEADer?
```
@@ -2853,7 +2853,7 @@ def opcextended(self) -> Opcextended:
SCPI Syntax:
```
- - OPCEXtended {|OFF|ON}
+ - OPCEXtended {ON|OFF|}
- OPCEXtended?
```
@@ -2955,7 +2955,7 @@ def psc(self) -> Psc:
SCPI Syntax:
```
- - *PSC {|OFF|ON}
+ - *PSC {ON|OFF|}
- *PSC?
```
@@ -3617,7 +3617,7 @@ def verbose(self) -> Verbose:
SCPI Syntax:
```
- - VERBose {|OFF|ON}
+ - VERBose {ON|OFF|}
```
Info:
diff --git a/src/tm_devices/commands/dpo70kc_commands.py b/src/tm_devices/commands/dpo70kc_commands.py
index c8fcc648..e802df17 100644
--- a/src/tm_devices/commands/dpo70kc_commands.py
+++ b/src/tm_devices/commands/dpo70kc_commands.py
@@ -86,9 +86,7 @@
from .gen_fteabn_lpdmsomdodpoafgawgdsa.status_and_error import Opt
from .gen_fug7nl_lpdmsodpomdoawgdsa.status_and_error import Ese, Sre
from .gen_fuzvln_lpdmsodpodsa.alias import Alias
-from .gen_fuzvln_lpdmsodpodsa.header import Header
from .gen_fuzvln_lpdmsodpodsa.status_and_error import Psc
-from .gen_fuzvln_lpdmsodpodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.allev import Allev
from .gen_fx54ua_lpdmsodpomdodsa.busy import Busy
from .gen_fx54ua_lpdmsodpomdodsa.dese import Dese
@@ -96,6 +94,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.evmsg import Evmsg
from .gen_fx54ua_lpdmsodpomdodsa.evqty import Evqty
from .gen_fx54ua_lpdmsodpomdodsa.factory import Factory
+from .gen_fx54ua_lpdmsodpomdodsa.header import Header
from .gen_fx54ua_lpdmsodpomdodsa.id import Id
from .gen_fx54ua_lpdmsodpomdodsa.miscellaneous import Ddt, Lrn
from .gen_fx54ua_lpdmsodpomdodsa.newpass import Newpass
@@ -104,6 +103,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.set import Set
from .gen_fx54ua_lpdmsodpomdodsa.status_and_error import Pud
from .gen_fx54ua_lpdmsodpomdodsa.teksecure import Teksecure
+from .gen_fx54ua_lpdmsodpomdodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.wavfrm import Wavfrm
from .gen_fzn174_lpdmsodpomdodsa.lock import Lock
from .gen_fzn174_lpdmsodpomdodsa.unlock import Unlock
@@ -1056,7 +1056,7 @@ def alias(self) -> Alias:
SCPI Syntax:
```
- - ALIas {OFF|ON|}
+ - ALIas {ON|OFF|}
- ALIas?
```
@@ -2273,7 +2273,7 @@ def hdr(self) -> Hdr:
SCPI Syntax:
```
- - HDR {|OFF|ON}
+ - HDR {ON|OFF|}
- HDR?
```
@@ -2306,7 +2306,7 @@ def header(self) -> Header:
SCPI Syntax:
```
- - HEADer {|OFF|ON}
+ - HEADer {ON|OFF|}
- HEADer?
```
@@ -2833,7 +2833,7 @@ def opcextended(self) -> Opcextended:
SCPI Syntax:
```
- - OPCEXtended {|OFF|ON}
+ - OPCEXtended {ON|OFF|}
- OPCEXtended?
```
@@ -2935,7 +2935,7 @@ def psc(self) -> Psc:
SCPI Syntax:
```
- - *PSC {|OFF|ON}
+ - *PSC {ON|OFF|}
- *PSC?
```
@@ -3597,7 +3597,7 @@ def verbose(self) -> Verbose:
SCPI Syntax:
```
- - VERBose {|OFF|ON}
+ - VERBose {ON|OFF|}
```
Info:
diff --git a/src/tm_devices/commands/dpo70kd_commands.py b/src/tm_devices/commands/dpo70kd_commands.py
index 1a05bbaa..5b543171 100644
--- a/src/tm_devices/commands/dpo70kd_commands.py
+++ b/src/tm_devices/commands/dpo70kd_commands.py
@@ -86,9 +86,7 @@
from .gen_fteabn_lpdmsomdodpoafgawgdsa.status_and_error import Opt
from .gen_fug7nl_lpdmsodpomdoawgdsa.status_and_error import Ese, Sre
from .gen_fuzvln_lpdmsodpodsa.alias import Alias
-from .gen_fuzvln_lpdmsodpodsa.header import Header
from .gen_fuzvln_lpdmsodpodsa.status_and_error import Psc
-from .gen_fuzvln_lpdmsodpodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.allev import Allev
from .gen_fx54ua_lpdmsodpomdodsa.busy import Busy
from .gen_fx54ua_lpdmsodpomdodsa.dese import Dese
@@ -96,6 +94,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.evmsg import Evmsg
from .gen_fx54ua_lpdmsodpomdodsa.evqty import Evqty
from .gen_fx54ua_lpdmsodpomdodsa.factory import Factory
+from .gen_fx54ua_lpdmsodpomdodsa.header import Header
from .gen_fx54ua_lpdmsodpomdodsa.id import Id
from .gen_fx54ua_lpdmsodpomdodsa.miscellaneous import Ddt, Lrn
from .gen_fx54ua_lpdmsodpomdodsa.newpass import Newpass
@@ -104,6 +103,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.set import Set
from .gen_fx54ua_lpdmsodpomdodsa.status_and_error import Pud
from .gen_fx54ua_lpdmsodpomdodsa.teksecure import Teksecure
+from .gen_fx54ua_lpdmsodpomdodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.wavfrm import Wavfrm
from .gen_fzn174_lpdmsodpomdodsa.lock import Lock
from .gen_fzn174_lpdmsodpomdodsa.unlock import Unlock
@@ -1056,7 +1056,7 @@ def alias(self) -> Alias:
SCPI Syntax:
```
- - ALIas {OFF|ON|}
+ - ALIas {ON|OFF|}
- ALIas?
```
@@ -2273,7 +2273,7 @@ def hdr(self) -> Hdr:
SCPI Syntax:
```
- - HDR {|OFF|ON}
+ - HDR {ON|OFF|}
- HDR?
```
@@ -2306,7 +2306,7 @@ def header(self) -> Header:
SCPI Syntax:
```
- - HEADer {|OFF|ON}
+ - HEADer {ON|OFF|}
- HEADer?
```
@@ -2833,7 +2833,7 @@ def opcextended(self) -> Opcextended:
SCPI Syntax:
```
- - OPCEXtended {|OFF|ON}
+ - OPCEXtended {ON|OFF|}
- OPCEXtended?
```
@@ -2935,7 +2935,7 @@ def psc(self) -> Psc:
SCPI Syntax:
```
- - *PSC {|OFF|ON}
+ - *PSC {ON|OFF|}
- *PSC?
```
@@ -3597,7 +3597,7 @@ def verbose(self) -> Verbose:
SCPI Syntax:
```
- - VERBose {|OFF|ON}
+ - VERBose {ON|OFF|}
```
Info:
diff --git a/src/tm_devices/commands/dpo70kdx_commands.py b/src/tm_devices/commands/dpo70kdx_commands.py
index 0321fb5b..ef41d7e2 100644
--- a/src/tm_devices/commands/dpo70kdx_commands.py
+++ b/src/tm_devices/commands/dpo70kdx_commands.py
@@ -86,9 +86,7 @@
from .gen_fteabn_lpdmsomdodpoafgawgdsa.status_and_error import Opt
from .gen_fug7nl_lpdmsodpomdoawgdsa.status_and_error import Ese, Sre
from .gen_fuzvln_lpdmsodpodsa.alias import Alias
-from .gen_fuzvln_lpdmsodpodsa.header import Header
from .gen_fuzvln_lpdmsodpodsa.status_and_error import Psc
-from .gen_fuzvln_lpdmsodpodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.allev import Allev
from .gen_fx54ua_lpdmsodpomdodsa.busy import Busy
from .gen_fx54ua_lpdmsodpomdodsa.dese import Dese
@@ -96,6 +94,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.evmsg import Evmsg
from .gen_fx54ua_lpdmsodpomdodsa.evqty import Evqty
from .gen_fx54ua_lpdmsodpomdodsa.factory import Factory
+from .gen_fx54ua_lpdmsodpomdodsa.header import Header
from .gen_fx54ua_lpdmsodpomdodsa.id import Id
from .gen_fx54ua_lpdmsodpomdodsa.miscellaneous import Ddt, Lrn
from .gen_fx54ua_lpdmsodpomdodsa.newpass import Newpass
@@ -104,6 +103,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.set import Set
from .gen_fx54ua_lpdmsodpomdodsa.status_and_error import Pud
from .gen_fx54ua_lpdmsodpomdodsa.teksecure import Teksecure
+from .gen_fx54ua_lpdmsodpomdodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.wavfrm import Wavfrm
from .gen_fzn174_lpdmsodpomdodsa.lock import Lock
from .gen_fzn174_lpdmsodpomdodsa.unlock import Unlock
@@ -1056,7 +1056,7 @@ def alias(self) -> Alias:
SCPI Syntax:
```
- - ALIas {OFF|ON|}
+ - ALIas {ON|OFF|}
- ALIas?
```
@@ -2273,7 +2273,7 @@ def hdr(self) -> Hdr:
SCPI Syntax:
```
- - HDR {|OFF|ON}
+ - HDR {ON|OFF|}
- HDR?
```
@@ -2306,7 +2306,7 @@ def header(self) -> Header:
SCPI Syntax:
```
- - HEADer {|OFF|ON}
+ - HEADer {ON|OFF|}
- HEADer?
```
@@ -2833,7 +2833,7 @@ def opcextended(self) -> Opcextended:
SCPI Syntax:
```
- - OPCEXtended {|OFF|ON}
+ - OPCEXtended {ON|OFF|}
- OPCEXtended?
```
@@ -2935,7 +2935,7 @@ def psc(self) -> Psc:
SCPI Syntax:
```
- - *PSC {|OFF|ON}
+ - *PSC {ON|OFF|}
- *PSC?
```
@@ -3597,7 +3597,7 @@ def verbose(self) -> Verbose:
SCPI Syntax:
```
- - VERBose {|OFF|ON}
+ - VERBose {ON|OFF|}
```
Info:
diff --git a/src/tm_devices/commands/dpo70ksx_commands.py b/src/tm_devices/commands/dpo70ksx_commands.py
index a8300fea..2339255f 100644
--- a/src/tm_devices/commands/dpo70ksx_commands.py
+++ b/src/tm_devices/commands/dpo70ksx_commands.py
@@ -88,9 +88,7 @@
from .gen_fteabn_lpdmsomdodpoafgawgdsa.status_and_error import Opt
from .gen_fug7nl_lpdmsodpomdoawgdsa.status_and_error import Ese, Sre
from .gen_fuzvln_lpdmsodpodsa.alias import Alias
-from .gen_fuzvln_lpdmsodpodsa.header import Header
from .gen_fuzvln_lpdmsodpodsa.status_and_error import Psc
-from .gen_fuzvln_lpdmsodpodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.allev import Allev
from .gen_fx54ua_lpdmsodpomdodsa.busy import Busy
from .gen_fx54ua_lpdmsodpomdodsa.dese import Dese
@@ -98,6 +96,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.evmsg import Evmsg
from .gen_fx54ua_lpdmsodpomdodsa.evqty import Evqty
from .gen_fx54ua_lpdmsodpomdodsa.factory import Factory
+from .gen_fx54ua_lpdmsodpomdodsa.header import Header
from .gen_fx54ua_lpdmsodpomdodsa.id import Id
from .gen_fx54ua_lpdmsodpomdodsa.miscellaneous import Ddt, Lrn
from .gen_fx54ua_lpdmsodpomdodsa.newpass import Newpass
@@ -106,6 +105,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.set import Set
from .gen_fx54ua_lpdmsodpomdodsa.status_and_error import Pud
from .gen_fx54ua_lpdmsodpomdodsa.teksecure import Teksecure
+from .gen_fx54ua_lpdmsodpomdodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.wavfrm import Wavfrm
from .gen_fzn174_lpdmsodpomdodsa.lock import Lock
from .gen_fzn174_lpdmsodpomdodsa.unlock import Unlock
@@ -1067,7 +1067,7 @@ def alias(self) -> Alias:
SCPI Syntax:
```
- - ALIas {OFF|ON|}
+ - ALIas {ON|OFF|}
- ALIas?
```
@@ -2339,7 +2339,7 @@ def hdr(self) -> Hdr:
SCPI Syntax:
```
- - HDR {|OFF|ON}
+ - HDR {ON|OFF|}
- HDR?
```
@@ -2372,7 +2372,7 @@ def header(self) -> Header:
SCPI Syntax:
```
- - HEADer {|OFF|ON}
+ - HEADer {ON|OFF|}
- HEADer?
```
@@ -2929,7 +2929,7 @@ def opcextended(self) -> Opcextended:
SCPI Syntax:
```
- - OPCEXtended {|OFF|ON}
+ - OPCEXtended {ON|OFF|}
- OPCEXtended?
```
@@ -3031,7 +3031,7 @@ def psc(self) -> Psc:
SCPI Syntax:
```
- - *PSC {|OFF|ON}
+ - *PSC {ON|OFF|}
- *PSC?
```
@@ -3693,7 +3693,7 @@ def verbose(self) -> Verbose:
SCPI Syntax:
```
- - VERBose {|OFF|ON}
+ - VERBose {ON|OFF|}
```
Info:
diff --git a/src/tm_devices/commands/dpo7k_commands.py b/src/tm_devices/commands/dpo7k_commands.py
index 86e50213..9b66b577 100644
--- a/src/tm_devices/commands/dpo7k_commands.py
+++ b/src/tm_devices/commands/dpo7k_commands.py
@@ -85,9 +85,7 @@
from .gen_fteabn_lpdmsomdodpoafgawgdsa.status_and_error import Opt
from .gen_fug7nl_lpdmsodpomdoawgdsa.status_and_error import Ese, Sre
from .gen_fuzvln_lpdmsodpodsa.alias import Alias
-from .gen_fuzvln_lpdmsodpodsa.header import Header
from .gen_fuzvln_lpdmsodpodsa.status_and_error import Psc
-from .gen_fuzvln_lpdmsodpodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.allev import Allev
from .gen_fx54ua_lpdmsodpomdodsa.busy import Busy
from .gen_fx54ua_lpdmsodpomdodsa.dese import Dese
@@ -95,6 +93,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.evmsg import Evmsg
from .gen_fx54ua_lpdmsodpomdodsa.evqty import Evqty
from .gen_fx54ua_lpdmsodpomdodsa.factory import Factory
+from .gen_fx54ua_lpdmsodpomdodsa.header import Header
from .gen_fx54ua_lpdmsodpomdodsa.id import Id
from .gen_fx54ua_lpdmsodpomdodsa.miscellaneous import Ddt, Lrn
from .gen_fx54ua_lpdmsodpomdodsa.newpass import Newpass
@@ -103,6 +102,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.set import Set
from .gen_fx54ua_lpdmsodpomdodsa.status_and_error import Pud
from .gen_fx54ua_lpdmsodpomdodsa.teksecure import Teksecure
+from .gen_fx54ua_lpdmsodpomdodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.wavfrm import Wavfrm
from .gen_fzn174_lpdmsodpomdodsa.lock import Lock
from .gen_fzn174_lpdmsodpomdodsa.unlock import Unlock
@@ -1052,7 +1052,7 @@ def alias(self) -> Alias:
SCPI Syntax:
```
- - ALIas {OFF|ON|}
+ - ALIas {ON|OFF|}
- ALIas?
```
@@ -2203,7 +2203,7 @@ def hdr(self) -> Hdr:
SCPI Syntax:
```
- - HDR {|OFF|ON}
+ - HDR {ON|OFF|}
- HDR?
```
@@ -2236,7 +2236,7 @@ def header(self) -> Header:
SCPI Syntax:
```
- - HEADer {|OFF|ON}
+ - HEADer {ON|OFF|}
- HEADer?
```
@@ -2763,7 +2763,7 @@ def opcextended(self) -> Opcextended:
SCPI Syntax:
```
- - OPCEXtended {|OFF|ON}
+ - OPCEXtended {ON|OFF|}
- OPCEXtended?
```
@@ -2865,7 +2865,7 @@ def psc(self) -> Psc:
SCPI Syntax:
```
- - *PSC {|OFF|ON}
+ - *PSC {ON|OFF|}
- *PSC?
```
@@ -3527,7 +3527,7 @@ def verbose(self) -> Verbose:
SCPI Syntax:
```
- - VERBose {|OFF|ON}
+ - VERBose {ON|OFF|}
```
Info:
diff --git a/src/tm_devices/commands/dpo7kc_commands.py b/src/tm_devices/commands/dpo7kc_commands.py
index 9ac2f3f6..3e64b505 100644
--- a/src/tm_devices/commands/dpo7kc_commands.py
+++ b/src/tm_devices/commands/dpo7kc_commands.py
@@ -86,9 +86,7 @@
from .gen_fteabn_lpdmsomdodpoafgawgdsa.status_and_error import Opt
from .gen_fug7nl_lpdmsodpomdoawgdsa.status_and_error import Ese, Sre
from .gen_fuzvln_lpdmsodpodsa.alias import Alias
-from .gen_fuzvln_lpdmsodpodsa.header import Header
from .gen_fuzvln_lpdmsodpodsa.status_and_error import Psc
-from .gen_fuzvln_lpdmsodpodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.allev import Allev
from .gen_fx54ua_lpdmsodpomdodsa.busy import Busy
from .gen_fx54ua_lpdmsodpomdodsa.dese import Dese
@@ -96,6 +94,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.evmsg import Evmsg
from .gen_fx54ua_lpdmsodpomdodsa.evqty import Evqty
from .gen_fx54ua_lpdmsodpomdodsa.factory import Factory
+from .gen_fx54ua_lpdmsodpomdodsa.header import Header
from .gen_fx54ua_lpdmsodpomdodsa.id import Id
from .gen_fx54ua_lpdmsodpomdodsa.miscellaneous import Ddt, Lrn
from .gen_fx54ua_lpdmsodpomdodsa.newpass import Newpass
@@ -104,6 +103,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.set import Set
from .gen_fx54ua_lpdmsodpomdodsa.status_and_error import Pud
from .gen_fx54ua_lpdmsodpomdodsa.teksecure import Teksecure
+from .gen_fx54ua_lpdmsodpomdodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.wavfrm import Wavfrm
from .gen_fzn174_lpdmsodpomdodsa.lock import Lock
from .gen_fzn174_lpdmsodpomdodsa.unlock import Unlock
@@ -1057,7 +1057,7 @@ def alias(self) -> Alias:
SCPI Syntax:
```
- - ALIas {OFF|ON|}
+ - ALIas {ON|OFF|}
- ALIas?
```
@@ -2274,7 +2274,7 @@ def hdr(self) -> Hdr:
SCPI Syntax:
```
- - HDR {|OFF|ON}
+ - HDR {ON|OFF|}
- HDR?
```
@@ -2307,7 +2307,7 @@ def header(self) -> Header:
SCPI Syntax:
```
- - HEADer {|OFF|ON}
+ - HEADer {ON|OFF|}
- HEADer?
```
@@ -2834,7 +2834,7 @@ def opcextended(self) -> Opcextended:
SCPI Syntax:
```
- - OPCEXtended {|OFF|ON}
+ - OPCEXtended {ON|OFF|}
- OPCEXtended?
```
@@ -2936,7 +2936,7 @@ def psc(self) -> Psc:
SCPI Syntax:
```
- - *PSC {|OFF|ON}
+ - *PSC {ON|OFF|}
- *PSC?
```
@@ -3598,7 +3598,7 @@ def verbose(self) -> Verbose:
SCPI Syntax:
```
- - VERBose {|OFF|ON}
+ - VERBose {ON|OFF|}
```
Info:
diff --git a/src/tm_devices/commands/dsa70kc_commands.py b/src/tm_devices/commands/dsa70kc_commands.py
index bd92deb8..538ee3ea 100644
--- a/src/tm_devices/commands/dsa70kc_commands.py
+++ b/src/tm_devices/commands/dsa70kc_commands.py
@@ -86,9 +86,7 @@
from .gen_fteabn_lpdmsomdodpoafgawgdsa.status_and_error import Opt
from .gen_fug7nl_lpdmsodpomdoawgdsa.status_and_error import Ese, Sre
from .gen_fuzvln_lpdmsodpodsa.alias import Alias
-from .gen_fuzvln_lpdmsodpodsa.header import Header
from .gen_fuzvln_lpdmsodpodsa.status_and_error import Psc
-from .gen_fuzvln_lpdmsodpodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.allev import Allev
from .gen_fx54ua_lpdmsodpomdodsa.busy import Busy
from .gen_fx54ua_lpdmsodpomdodsa.dese import Dese
@@ -96,6 +94,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.evmsg import Evmsg
from .gen_fx54ua_lpdmsodpomdodsa.evqty import Evqty
from .gen_fx54ua_lpdmsodpomdodsa.factory import Factory
+from .gen_fx54ua_lpdmsodpomdodsa.header import Header
from .gen_fx54ua_lpdmsodpomdodsa.id import Id
from .gen_fx54ua_lpdmsodpomdodsa.miscellaneous import Ddt, Lrn
from .gen_fx54ua_lpdmsodpomdodsa.newpass import Newpass
@@ -104,6 +103,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.set import Set
from .gen_fx54ua_lpdmsodpomdodsa.status_and_error import Pud
from .gen_fx54ua_lpdmsodpomdodsa.teksecure import Teksecure
+from .gen_fx54ua_lpdmsodpomdodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.wavfrm import Wavfrm
from .gen_fzn174_lpdmsodpomdodsa.lock import Lock
from .gen_fzn174_lpdmsodpomdodsa.unlock import Unlock
@@ -1056,7 +1056,7 @@ def alias(self) -> Alias:
SCPI Syntax:
```
- - ALIas {OFF|ON|}
+ - ALIas {ON|OFF|}
- ALIas?
```
@@ -2273,7 +2273,7 @@ def hdr(self) -> Hdr:
SCPI Syntax:
```
- - HDR {|OFF|ON}
+ - HDR {ON|OFF|}
- HDR?
```
@@ -2306,7 +2306,7 @@ def header(self) -> Header:
SCPI Syntax:
```
- - HEADer {|OFF|ON}
+ - HEADer {ON|OFF|}
- HEADer?
```
@@ -2833,7 +2833,7 @@ def opcextended(self) -> Opcextended:
SCPI Syntax:
```
- - OPCEXtended {|OFF|ON}
+ - OPCEXtended {ON|OFF|}
- OPCEXtended?
```
@@ -2935,7 +2935,7 @@ def psc(self) -> Psc:
SCPI Syntax:
```
- - *PSC {|OFF|ON}
+ - *PSC {ON|OFF|}
- *PSC?
```
@@ -3597,7 +3597,7 @@ def verbose(self) -> Verbose:
SCPI Syntax:
```
- - VERBose {|OFF|ON}
+ - VERBose {ON|OFF|}
```
Info:
diff --git a/src/tm_devices/commands/dsa70kd_commands.py b/src/tm_devices/commands/dsa70kd_commands.py
index 2aaea4c7..fe32b02a 100644
--- a/src/tm_devices/commands/dsa70kd_commands.py
+++ b/src/tm_devices/commands/dsa70kd_commands.py
@@ -86,9 +86,7 @@
from .gen_fteabn_lpdmsomdodpoafgawgdsa.status_and_error import Opt
from .gen_fug7nl_lpdmsodpomdoawgdsa.status_and_error import Ese, Sre
from .gen_fuzvln_lpdmsodpodsa.alias import Alias
-from .gen_fuzvln_lpdmsodpodsa.header import Header
from .gen_fuzvln_lpdmsodpodsa.status_and_error import Psc
-from .gen_fuzvln_lpdmsodpodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.allev import Allev
from .gen_fx54ua_lpdmsodpomdodsa.busy import Busy
from .gen_fx54ua_lpdmsodpomdodsa.dese import Dese
@@ -96,6 +94,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.evmsg import Evmsg
from .gen_fx54ua_lpdmsodpomdodsa.evqty import Evqty
from .gen_fx54ua_lpdmsodpomdodsa.factory import Factory
+from .gen_fx54ua_lpdmsodpomdodsa.header import Header
from .gen_fx54ua_lpdmsodpomdodsa.id import Id
from .gen_fx54ua_lpdmsodpomdodsa.miscellaneous import Ddt, Lrn
from .gen_fx54ua_lpdmsodpomdodsa.newpass import Newpass
@@ -104,6 +103,7 @@
from .gen_fx54ua_lpdmsodpomdodsa.set import Set
from .gen_fx54ua_lpdmsodpomdodsa.status_and_error import Pud
from .gen_fx54ua_lpdmsodpomdodsa.teksecure import Teksecure
+from .gen_fx54ua_lpdmsodpomdodsa.verbose import Verbose
from .gen_fx54ua_lpdmsodpomdodsa.wavfrm import Wavfrm
from .gen_fzn174_lpdmsodpomdodsa.lock import Lock
from .gen_fzn174_lpdmsodpomdodsa.unlock import Unlock
@@ -1056,7 +1056,7 @@ def alias(self) -> Alias:
SCPI Syntax:
```
- - ALIas {OFF|ON|}
+ - ALIas {ON|OFF|}
- ALIas?
```
@@ -2273,7 +2273,7 @@ def hdr(self) -> Hdr:
SCPI Syntax:
```
- - HDR {|OFF|ON}
+ - HDR {ON|OFF|}
- HDR?
```
@@ -2306,7 +2306,7 @@ def header(self) -> Header:
SCPI Syntax:
```
- - HEADer {|OFF|ON}
+ - HEADer {ON|OFF|}
- HEADer?
```
@@ -2833,7 +2833,7 @@ def opcextended(self) -> Opcextended:
SCPI Syntax:
```
- - OPCEXtended {|OFF|ON}
+ - OPCEXtended {ON|OFF|}
- OPCEXtended?
```
@@ -2935,7 +2935,7 @@ def psc(self) -> Psc:
SCPI Syntax:
```
- - *PSC {|OFF|ON}
+ - *PSC {ON|OFF|}
- *PSC?
```
@@ -3597,7 +3597,7 @@ def verbose(self) -> Verbose:
SCPI Syntax:
```
- - VERBose {|OFF|ON}
+ - VERBose {ON|OFF|}
```
Info:
diff --git a/src/tm_devices/commands/gen_163n04_mdo/search.py b/src/tm_devices/commands/gen_163n04_mdo/search.py
index 4d8e6292..174c1213 100644
--- a/src/tm_devices/commands/gen_163n04_mdo/search.py
+++ b/src/tm_devices/commands/gen_163n04_mdo/search.py
@@ -12,7 +12,7 @@
```
- SEARCH:SEARCH:COPy {SEARCHtotrigger|TRIGgertosearch}
- SEARCH:SEARCH:LIST?
- - SEARCH:SEARCH:STATE {|OFF|ON}
+ - SEARCH:SEARCH:STATE {ON|OFF|}
- SEARCH:SEARCH:STATE?
- SEARCH:SEARCH:TOTal?
- SEARCH:SEARCH:TRIG:A:BUS:B:ETHER:IPH:DEST:VAL
@@ -18731,7 +18731,7 @@ class SearchSearchItemState(SCPICmdWrite, SCPICmdRead):
SCPI Syntax:
```
- - SEARCH:SEARCH:STATE {|OFF|ON}
+ - SEARCH:SEARCH:STATE {ON|OFF|}
- SEARCH:SEARCH:STATE?
```
@@ -18876,7 +18876,7 @@ def state(self) -> SearchSearchItemState:
SCPI Syntax:
```
- - SEARCH:SEARCH:STATE {|OFF|ON}
+ - SEARCH:SEARCH:STATE {ON|OFF|}
- SEARCH:SEARCH:STATE?
```
diff --git a/src/tm_devices/commands/gen_16x4xq_mdo/search.py b/src/tm_devices/commands/gen_16x4xq_mdo/search.py
index 18d5e37f..b2cdeb65 100644
--- a/src/tm_devices/commands/gen_16x4xq_mdo/search.py
+++ b/src/tm_devices/commands/gen_16x4xq_mdo/search.py
@@ -12,7 +12,7 @@
```
- SEARCH:SEARCH:COPy {SEARCHtotrigger|TRIGgertosearch}
- SEARCH:SEARCH:LIST?
- - SEARCH:SEARCH:STATE {|OFF|ON}
+ - SEARCH:SEARCH:STATE {ON|OFF|}
- SEARCH:SEARCH:STATE?
- SEARCH:SEARCH:TOTal?
- SEARCH:SEARCH:TRIG:A:BUS:B:MIL1553B:COMMAND:ADDR:QUAL {LESSthan|MOREthan|EQual|UNEQual|LESSEQual|MOREEQual|INrange|OUTrange}
@@ -16577,7 +16577,7 @@ class SearchSearchItemState(SCPICmdWrite, SCPICmdRead):
SCPI Syntax:
```
- - SEARCH:SEARCH:STATE {|OFF|ON}
+ - SEARCH:SEARCH:STATE {ON|OFF|}
- SEARCH:SEARCH:STATE?
```
@@ -16722,7 +16722,7 @@ def state(self) -> SearchSearchItemState:
SCPI Syntax:
```
- - SEARCH:SEARCH:STATE {|OFF|ON}
+ - SEARCH:SEARCH:STATE {ON|OFF|}
- SEARCH:SEARCH:STATE?
```
diff --git a/src/tm_devices/commands/gen_1kdqwg_mdo/search.py b/src/tm_devices/commands/gen_1kdqwg_mdo/search.py
index 36493263..82e6c2bf 100644
--- a/src/tm_devices/commands/gen_1kdqwg_mdo/search.py
+++ b/src/tm_devices/commands/gen_1kdqwg_mdo/search.py
@@ -12,7 +12,7 @@
```
- SEARCH:SEARCH:COPy {SEARCHtotrigger|TRIGgertosearch}
- SEARCH:SEARCH:LIST?
- - SEARCH:SEARCH:STATE {|OFF|ON}
+ - SEARCH:SEARCH:STATE {ON|OFF|}
- SEARCH:SEARCH:STATE?
- SEARCH:SEARCH:TOTal?
- SEARCH:SEARCH:TRIG:A:BUS:B:ETHER:IPH:DEST:VAL
@@ -18979,7 +18979,7 @@ class SearchSearchItemState(SCPICmdWrite, SCPICmdRead):
SCPI Syntax:
```
- - SEARCH:SEARCH:STATE {|OFF|ON}
+ - SEARCH:SEARCH:STATE {ON|OFF|}
- SEARCH:SEARCH:STATE?
```
@@ -19124,7 +19124,7 @@ def state(self) -> SearchSearchItemState:
SCPI Syntax:
```
- - SEARCH:SEARCH:STATE {|OFF|ON}
+ - SEARCH:SEARCH:STATE {ON|OFF|}
- SEARCH:SEARCH:STATE?
```
diff --git a/src/tm_devices/commands/gen_1kozfv_dpo/search.py b/src/tm_devices/commands/gen_1kozfv_dpo/search.py
index cfe4510d..f970c9f1 100644
--- a/src/tm_devices/commands/gen_1kozfv_dpo/search.py
+++ b/src/tm_devices/commands/gen_1kozfv_dpo/search.py
@@ -12,7 +12,7 @@
```
- SEARCH:SEARCH:COPy {SEARCHtotrigger|TRIGgertosearch}
- SEARCH:SEARCH:LIST?
- - SEARCH:SEARCH:STATE {|OFF|ON}
+ - SEARCH:SEARCH:STATE {ON|OFF|}
- SEARCH:SEARCH:STATE?
- SEARCH:SEARCH:TOTal?
- SEARCH:SEARCH:TRIG:A:BUS:B:MIL1553B:COMMAND:ADDR:QUAL {LESSthan|MOREthan|EQual|UNEQual|LESSEQual|MOREEQual|INrange|OUTrange}
@@ -15809,7 +15809,7 @@ class SearchSearchItemState(SCPICmdWrite, SCPICmdRead):
SCPI Syntax:
```
- - SEARCH:SEARCH:STATE {|OFF|ON}
+ - SEARCH:SEARCH:STATE {ON|OFF|}
- SEARCH:SEARCH:STATE?
```
@@ -15954,7 +15954,7 @@ def state(self) -> SearchSearchItemState:
SCPI Syntax:
```
- - SEARCH:SEARCH:STATE {|OFF|ON}
+ - SEARCH:SEARCH:STATE {ON|OFF|}
- SEARCH:SEARCH:STATE?
```
diff --git a/src/tm_devices/commands/gen_1lcv3a_msodpomdo/message.py b/src/tm_devices/commands/gen_1lcv3a_msodpomdo/message.py
index 7ab7caa8..8143d90e 100644
--- a/src/tm_devices/commands/gen_1lcv3a_msodpomdo/message.py
+++ b/src/tm_devices/commands/gen_1lcv3a_msodpomdo/message.py
@@ -15,7 +15,7 @@
- MESSage:CLEAR
- MESSage:SHOW
- MESSage:SHOW?
- - MESSage:STATE {OFF|ON|}
+ - MESSage:STATE {ON|OFF|}
- MESSage:STATE?
- MESSage?
```
@@ -43,7 +43,7 @@ class MessageState(SCPICmdWrite, SCPICmdRead):
SCPI Syntax:
```
- - MESSage:STATE {OFF|ON|}
+ - MESSage:STATE {ON|OFF|}
- MESSage:STATE?
```
@@ -266,7 +266,7 @@ def state(self) -> MessageState:
SCPI Syntax:
```
- - MESSage:STATE {OFF|ON|}
+ - MESSage:STATE {ON|OFF|}
- MESSage:STATE?
```
diff --git a/src/tm_devices/commands/gen_1lh2st_msodpo/search.py b/src/tm_devices/commands/gen_1lh2st_msodpo/search.py
index 304fe2a5..bdf6ed0d 100644
--- a/src/tm_devices/commands/gen_1lh2st_msodpo/search.py
+++ b/src/tm_devices/commands/gen_1lh2st_msodpo/search.py
@@ -12,7 +12,7 @@
```
- SEARCH:SEARCH:COPy {SEARCHtotrigger|TRIGgertosearch}
- SEARCH:SEARCH:LIST?
- - SEARCH:SEARCH:STATE {|OFF|ON}
+ - SEARCH:SEARCH:STATE {ON|OFF|}
- SEARCH:SEARCH:STATE?
- SEARCH:SEARCH:TOTal?
- SEARCH:SEARCH:TRIG:A:BUS:B