We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51063bd commit c403ea1Copy full SHA for c403ea1
modules/serial/serial_manager.py
@@ -38,6 +38,7 @@ def update_serial_ports(serial_status: Queue[str]) -> list[str]:
38
elif sys.platform.startswith("linux") or sys.platform.startswith("cygwin"):
39
# '/dev/tty[A-Za-z]*'
40
com_ports = glob.glob("/dev/ttyUSB*")
41
+ com_ports += glob.glob("/dev/ACM*")
42
elif sys.platform.startswith("darwin"):
43
com_ports = glob.glob("/dev/tty.*")
44
0 commit comments