We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92d1016 commit 24691e7Copy full SHA for 24691e7
serial/tools/list_ports_linux.py
@@ -89,6 +89,7 @@ def read_line(self, *args):
89
def comports(include_links=False):
90
devices = glob.glob('/dev/ttyS*') # built-in serial ports
91
devices.extend(glob.glob('/dev/ttyUSB*')) # usb-serial with own driver
92
+ devices.extend(glob.glob('/dev/ttyXRUSB*')) # xr-usb-serial port exar (DELL Edge 3001)
93
devices.extend(glob.glob('/dev/ttyACM*')) # usb-serial with CDC-ACM profile
94
devices.extend(glob.glob('/dev/ttyAMA*')) # ARM internal port (raspi)
95
devices.extend(glob.glob('/dev/rfcomm*')) # BT serial devices
0 commit comments