Skip to content

Commit c403ea1

Browse files
committed
Include ACM* usb devices in available ports.
1 parent 51063bd commit c403ea1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

modules/serial/serial_manager.py

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ def update_serial_ports(serial_status: Queue[str]) -> list[str]:
3838
elif sys.platform.startswith("linux") or sys.platform.startswith("cygwin"):
3939
# '/dev/tty[A-Za-z]*'
4040
com_ports = glob.glob("/dev/ttyUSB*")
41+
com_ports += glob.glob("/dev/ACM*")
4142
elif sys.platform.startswith("darwin"):
4243
com_ports = glob.glob("/dev/tty.*")
4344

0 commit comments

Comments
 (0)