diff options
Diffstat (limited to '')
-rwxr-xr-x | reversing_tools/abbott/freestyle_hid_console.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/reversing_tools/abbott/freestyle_hid_console.py b/reversing_tools/abbott/freestyle_hid_console.py index 654a97c..0ed4705 100755 --- a/reversing_tools/abbott/freestyle_hid_console.py +++ b/reversing_tools/abbott/freestyle_hid_console.py @@ -45,11 +45,11 @@ def main(): logging.basicConfig(level=args.vlog) - device = freestyle.FreeStyleHidDevice(args.device) - device.TEXT_CMD = args.text_cmd_type - device.TEXT_REPLY_CMD = args.text_reply_type + session = freestyle.FreeStyleHidSession( + None, args.device, args.text_cmd_type, args.text_reply_type + ) - device.connect() + session.connect() while True: if sys.stdin.isatty(): @@ -59,7 +59,7 @@ def main(): print(f">>> {command}") try: - print(device._send_text_command(bytes(command, "ascii"))) + print(session.send_text_command(bytes(command, "ascii"))) except exceptions.InvalidResponse as error: print(f"! {error}") |