diff options
author | Timothy Pearson <tpearson@raptorengineering.com> | 2019-08-05 04:58:40 -0500 |
---|---|---|
committer | Timothy Pearson <tpearson@raptorengineering.com> | 2019-08-05 04:58:40 -0500 |
commit | c40a208abbc778da4271485eba06a89d05c69b5e (patch) | |
tree | 3e492d54efae965ca882f8bde4e4e724f30e24b8 /servers/gpib_server_lin/src/gpib_functions.cpp | |
parent | b9302c6da3ffa7afd922aec91b7bf578359936a4 (diff) | |
download | ulab-c40a208abbc778da4271485eba06a89d05c69b5e.tar.gz ulab-c40a208abbc778da4271485eba06a89d05c69b5e.zip |
Explicitly call out the "C" and higher variants of the TDS7x4 scopes, as an updated programming manual was issued for them (distinct from the "A" variants)
Fix reassembly of waveform data on "C" scope variants -- presumed to also fix (or at least not break) "A" variant reassembly, but this remains untested
Diffstat (limited to 'servers/gpib_server_lin/src/gpib_functions.cpp')
-rw-r--r-- | servers/gpib_server_lin/src/gpib_functions.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/servers/gpib_server_lin/src/gpib_functions.cpp b/servers/gpib_server_lin/src/gpib_functions.cpp index e3e3a38..d3e170e 100644 --- a/servers/gpib_server_lin/src/gpib_functions.cpp +++ b/servers/gpib_server_lin/src/gpib_functions.cpp @@ -39,6 +39,9 @@ const char * scopeLongDescription (const char * scopeType) { else if (strcmp("TDS744AOS", scopeType) == 0) { return "Tektronix 744A series"; } + else if (strcmp("TDS744COS", scopeType) == 0) { + return "Tektronix 744C series"; + } else { return "UNKNOWN"; } @@ -128,4 +131,4 @@ int gpib_read_binary(int ud, int max_num_bytes) { return -1; } return 0; -}
\ No newline at end of file +} |