From 057c7e099e8d5f2ba2ef8a856718ab1ca9a2a2d7 Mon Sep 17 00:00:00 2001 From: Doug Schaefer Date: Fri, 12 Aug 2016 13:42:19 -0400 Subject: [PATCH] Bug 497691 - Allow all cu.* serial ports on Mac. Remove tty.* gdb doesn't work when the serial port is tty.*. cu.* is supposed to be for calling out, tty is for receiving. Our use cases are the former. Change-Id: Iea15efbfa353eda3a7260c2f9c8a75a310f679f9 --- .../src/org/eclipse/cdt/serial/SerialPort.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/org.eclipse.cdt.native.serial/src/org/eclipse/cdt/serial/SerialPort.java b/native/org.eclipse.cdt.native.serial/src/org/eclipse/cdt/serial/SerialPort.java index 365e6322f31..716fc6b15d8 100644 --- a/native/org.eclipse.cdt.native.serial/src/org/eclipse/cdt/serial/SerialPort.java +++ b/native/org.eclipse.cdt.native.serial/src/org/eclipse/cdt/serial/SerialPort.java @@ -226,7 +226,7 @@ public class SerialPort { public static String[] list() throws IOException { String osName = System.getProperty("os.name"); //$NON-NLS-1$ if (osName.equals("Mac OS X")) { //$NON-NLS-1$ - return listDevs(Pattern.compile("(?:tty|cu)\\..*(?:usbserial|usbmodem).*")); //$NON-NLS-1$ + return listDevs(Pattern.compile("cu\\..*")); //$NON-NLS-1$ } else if (osName.equals("Linux")) { //$NON-NLS-1$ return listDevs(Pattern.compile("ttyUSB.*")); //$NON-NLS-1$ } else if (osName.startsWith("Windows")) { //$NON-NLS-1$