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.
2 parents e5068a8 + 99cd372 commit bafd196Copy full SHA for bafd196
serial/tools/list_ports_linux.py
@@ -91,6 +91,7 @@ def read_line(self, *args):
91
def comports(include_links=False):
92
devices = glob.glob('/dev/ttyS*') # built-in serial ports
93
devices.extend(glob.glob('/dev/ttyUSB*')) # usb-serial with own driver
94
+ devices.extend(glob.glob('/dev/ttyXRUSB*')) # xr-usb-serial port exar (DELL Edge 3001)
95
devices.extend(glob.glob('/dev/ttyACM*')) # usb-serial with CDC-ACM profile
96
devices.extend(glob.glob('/dev/ttyAMA*')) # ARM internal port (raspi)
97
devices.extend(glob.glob('/dev/rfcomm*')) # BT serial devices
0 commit comments