We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 376deb3 commit dc71782Copy full SHA for dc71782
1 file changed
OpenBCI_GUI/W_Networking.pde
@@ -179,7 +179,7 @@ class W_Networking extends Widget {
179
private LinkedList<String> getCuCommPorts() {
180
final SerialPort[] allCommPorts = SerialPort.getCommPorts();
181
LinkedList<String> cuCommPorts = new LinkedList<String>();
182
- for (String port : allCommPorts) {
+ for (SerialPort port : allCommPorts) {
183
if (isMac() && port.getSystemPortName().startsWith("tty")) {
184
continue;
185
}
0 commit comments