Skip to content

Commit 24691e7

Browse files
authored
Add support exar usb-serial ports
Add support exar usb-serial ports seen on DELL Edge gateways (300x series)
1 parent 92d1016 commit 24691e7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

serial/tools/list_ports_linux.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ def read_line(self, *args):
8989
def comports(include_links=False):
9090
devices = glob.glob('/dev/ttyS*') # built-in serial ports
9191
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)
9293
devices.extend(glob.glob('/dev/ttyACM*')) # usb-serial with CDC-ACM profile
9394
devices.extend(glob.glob('/dev/ttyAMA*')) # ARM internal port (raspi)
9495
devices.extend(glob.glob('/dev/rfcomm*')) # BT serial devices

0 commit comments

Comments
 (0)