From ca3c60ea6ba1fc75559318a5c465c6dea3675de6 Mon Sep 17 00:00:00 2001 From: Stefano Bertelli Date: Mon, 15 Jan 2024 14:23:27 -0600 Subject: [PATCH] fix: try fast comm speed --- rotary_controller_python/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rotary_controller_python/main.py b/rotary_controller_python/main.py index 3b5eee7..b6f506f 100644 --- a/rotary_controller_python/main.py +++ b/rotary_controller_python/main.py @@ -86,7 +86,7 @@ class MainApp(App): def __init__(self, **kv): try: self.device = communication.DeviceManager( - serial_device=self.serial_port, baudrate=460800, address=17 + serial_device=self.serial_port, baudrate=115200, address=17 ) except Exception as e: log.error(f"Communication cannot be started, will try again: {e.__str__()}")