From d7ce5d57a0807d65d040b1e6a352bbc9f3360e54 Mon Sep 17 00:00:00 2001 From: MatthieuDartiailh Date: Tue, 10 Dec 2024 10:42:02 +0100 Subject: [PATCH] attributes: add vicp INSTR to the supported interface for TCPIP keep alive attr --- pyvisa_py/attributes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyvisa_py/attributes.py b/pyvisa_py/attributes.py index 753d20d..99ba044 100644 --- a/pyvisa_py/attributes.py +++ b/pyvisa_py/attributes.py @@ -27,4 +27,5 @@ class AttrVI_ATTR_TCPIP_KEEPALIVE(former_keepalive): resources = [ (constants.InterfaceType.tcpip, "SOCKET"), (constants.InterfaceType.tcpip, "INSTR"), + (constants.InterfaceType.vicp, "INSTR"), ]