Ver código fonte

Add /dev/ttyS0 to ignored serial ports list

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
tuanchris 1 semana atrás
pai
commit
42f1374fbe
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      modules/connection/connection_manager.py

+ 1 - 1
modules/connection/connection_manager.py

@@ -14,7 +14,7 @@ from modules.led.idle_timeout_manager import idle_timeout_manager
 
 logger = logging.getLogger(__name__)
 
-IGNORE_PORTS = ['/dev/cu.debug-console', '/dev/cu.Bluetooth-Incoming-Port']
+IGNORE_PORTS = ['/dev/cu.debug-console', '/dev/cu.Bluetooth-Incoming-Port', '/dev/ttyS0']
 
 
 async def _check_table_is_idle() -> bool: