Skip to content

Commit

Permalink
feat: updated commands with latest doc changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
v12ganesh committed Nov 18, 2024
1 parent dee3577 commit f94f6aa
Show file tree
Hide file tree
Showing 69 changed files with 452 additions and 3,118 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Things to be included in the next release go here.
- A logfile is now created that contains each command sent to a VISA device.
- This file is located next to the main log file and will start with the same name, but have the unique address of the device appended.
- This file will only be created if file logging is enabled for the package (which is the default behavior).
- Full Python API support for MDO3 model.
- Full Python API support for the MDO3 model.

### Changed

Expand Down
5 changes: 4 additions & 1 deletion src/tm_devices/commands/dpo4k_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
from .gen_1ltpwt_mdomsodpo.gpibusb import Gpibusb
from .gen_1ltpwt_mdomsodpo.hardcopy import Hardcopy
from .gen_1ltpwt_mdomsodpo.horizontal import Horizontal
from .gen_1ltpwt_mdomsodpo.mark import Mark
from .gen_1ltpwt_mdomsodpo.marker import Marker
from .gen_1ltpwt_mdomsodpo.math1 import Math1
from .gen_1ltpwt_mdomsodpo.pictbridge import Pictbridge
Expand All @@ -61,7 +62,6 @@
from .gen_1mlt9u_mdomsodpo.save import Save
from .gen_1mlt9u_mdomsodpo.select import Select
from .gen_1mq0z9_msodpo.rf import Rf
from .gen_1msu49_msodpo.mark import Mark
from .gen_1nmc1o_msodpomdo.clearmenu import Clearmenu
from .gen_1nmc1o_msodpomdo.errlog import Errlog
from .gen_1nmc1o_msodpomdo.language import Language
Expand Down Expand Up @@ -212,6 +212,7 @@ class DPO4KCommandConstants:
CMOS_2_5V = "CMOS_2_5V"
CMOS_3_3V = "CMOS_3_3V"
CMOS_5_0V = "CMOS_5_0V"
COLUMN = "COLUMN"
COMMAND = "COMMAND"
COPYACTIVE = "COPYACTIVE" # COPYACTive
CPU = "CPU"
Expand Down Expand Up @@ -2084,6 +2085,8 @@ def mark(self) -> Mark:
- ``PREVious`` moves to the next reference mark on the left.
Sub-properties:
- ``.create``: The ``MARK:CREATE`` command.
- ``.delete``: The ``MARK:DELEte`` command.
- ``.free``: The ``MARK:FREE`` command.
- ``.saveall``: The ``MARK:SAVEALL`` command.
- ``.selected``: The ``MARK:SELected`` command tree.
Expand Down
5 changes: 4 additions & 1 deletion src/tm_devices/commands/dpo4kb_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
from .gen_1ltpwt_mdomsodpo.gpibusb import Gpibusb
from .gen_1ltpwt_mdomsodpo.hardcopy import Hardcopy
from .gen_1ltpwt_mdomsodpo.horizontal import Horizontal
from .gen_1ltpwt_mdomsodpo.mark import Mark
from .gen_1ltpwt_mdomsodpo.marker import Marker
from .gen_1ltpwt_mdomsodpo.math1 import Math1
from .gen_1ltpwt_mdomsodpo.pictbridge import Pictbridge
Expand All @@ -61,7 +62,6 @@
from .gen_1mlt9u_mdomsodpo.save import Save
from .gen_1mlt9u_mdomsodpo.select import Select
from .gen_1mq0z9_msodpo.rf import Rf
from .gen_1msu49_msodpo.mark import Mark
from .gen_1nmc1o_msodpomdo.clearmenu import Clearmenu
from .gen_1nmc1o_msodpomdo.errlog import Errlog
from .gen_1nmc1o_msodpomdo.language import Language
Expand Down Expand Up @@ -212,6 +212,7 @@ class DPO4KBCommandConstants:
CMOS_2_5V = "CMOS_2_5V"
CMOS_3_3V = "CMOS_3_3V"
CMOS_5_0V = "CMOS_5_0V"
COLUMN = "COLUMN"
COMMAND = "COMMAND"
COPYACTIVE = "COPYACTIVE" # COPYACTive
CPU = "CPU"
Expand Down Expand Up @@ -2092,6 +2093,8 @@ def mark(self) -> Mark:
- ``PREVious`` moves to the next reference mark on the left.
Sub-properties:
- ``.create``: The ``MARK:CREATE`` command.
- ``.delete``: The ``MARK:DELEte`` command.
- ``.free``: The ``MARK:FREE`` command.
- ``.saveall``: The ``MARK:SAVEALL`` command.
- ``.selected``: The ``MARK:SELected`` command tree.
Expand Down
Loading

0 comments on commit f94f6aa

Please sign in to comment.