Configuring a measurement on a single sequence - DPO2004B #446
-
|
Referencing the example laid out here and realizing the '.add_meas' sub property isn't listed for this device in the IntelliSense drop down. Is there another method to configure this with this scope? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
While we have some more experienced folks looking into this I might offer this as a resource: The legacy products don't have the dynamic commands like the more modern 4/5/6-Series scopes. I think that means you don't have to add a measurement (I could be wrong, I am not really familiar with the older models). You just configure them by number. I don't know how functional the python API is for the DPO2004 since its not fully validated, but the syntax in SCPI is: Hopefully there is an equivalent to that. |
Beta Was this translation helpful? Give feedback.
The below mentioned code can be used for setting the measurement in DPO2KB model:
let me know you have any further queries.
from tm_devices import DeviceManager
from tm_devices.drivers import DPO2KB
from tm_devices.helpers import PYVISA_PY_BACKEND
with DeviceManager(verbose=True) as device_manager:
# Enable resetting the devices when connecting and closing
device_manager.setup_cleanup_enabled = False
device_manager.teardown_cleanup_enabled = False