From c40a208abbc778da4271485eba06a89d05c69b5e Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 5 Aug 2019 04:58:40 -0500 Subject: 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 --- servers/gpib_server_lin/src/gpib_functions.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'servers/gpib_server_lin/src/gpib_functions.cpp') 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 +} -- cgit v1.2.3