From 38e0e26a941dccffd5c81748802c25bf66490feb Mon Sep 17 00:00:00 2001 From: MatthieuDartiailh Date: Wed, 30 Sep 2020 22:07:46 -0400 Subject: [PATCH] gpib: fix command value --- pyvisa_py/gpib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyvisa_py/gpib.py b/pyvisa_py/gpib.py index 806e66f5..41ae62c3 100644 --- a/pyvisa_py/gpib.py +++ b/pyvisa_py/gpib.py @@ -78,7 +78,7 @@ class GPIBCommand(bytes, Enum): LLO = b"\x11" #: UNLISTEN - UNL = b"\x5F" + UNL = b"\x3F" # Talker @staticmethod