From b32f713446eaf5ebb417281afe7740d149eb3f3b Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Thu, 10 Sep 2015 00:36:16 -0500 Subject: [PATCH] Fix component analyzer access --- servers/gpib_server_lin/src/gpib_conn.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/servers/gpib_server_lin/src/gpib_conn.cpp b/servers/gpib_server_lin/src/gpib_conn.cpp index 86ca4a8..3e8777f 100644 --- a/servers/gpib_server_lin/src/gpib_conn.cpp +++ b/servers/gpib_server_lin/src/gpib_conn.cpp @@ -211,6 +211,9 @@ void GPIBSocket::commandLoop() { else if (instrumentRequest == "COMMUNICATIONS ANALYZER") { m_activeDeviceType = 4; } + else if (instrumentRequest == "COMPONENT ANALYZER") { + m_activeDeviceType = 5; + } if (m_activeDeviceType != 0) { ds << TQString("ACK");