diff options
Diffstat (limited to 'qolab/hardware/scope/sds1104x.py')
-rw-r--r-- | qolab/hardware/scope/sds1104x.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/qolab/hardware/scope/sds1104x.py b/qolab/hardware/scope/sds1104x.py index ae51a13..9ed3807 100644 --- a/qolab/hardware/scope/sds1104x.py +++ b/qolab/hardware/scope/sds1104x.py @@ -126,7 +126,8 @@ class SDS1104X(ScopeSCPI): else: # we just ask every point with 'sparsing' interval # fast to grab but we could do better with more advance decimate - # method, which allow better precision for the price of longer acquisition time + # method, which allow better precision for the price + # of longer acquisition time cstr = f"WAVEFORM_SETUP SP,{sparsing},NP,{Npnts},FP,0" # Note: it is not enough to provide sparsing (SP), # number of points (NP) needed to be calculated properly too! @@ -141,7 +142,8 @@ class SDS1104X(ScopeSCPI): # For example: # NP = 0 sends all data points. # NP = 50 sends a maximum of 50 data points. - # FP — First point. It specifies the address of the first data point to be sent. + # FP — First point. It specifies the address of the first data point + # to be sent. # For example: # FP = 0 corresponds to the first data point. # FP = 1 corresponds to the second data point |