Switch to 'cu' AVox-USB devices for Mac.

This commit is contained in:
Stephen Anthony 2020-10-20 09:44:35 -02:30
parent 949e6aa915
commit ddf8b84130
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ StringList SerialPortMACOS::portNames()
// Get all possible devices in the '/dev' directory
FilesystemNode::NameFilter filter = [](const FilesystemNode& node) {
return BSPF::startsWithIgnoreCase(node.getPath(), "/dev/tty.usb");
return BSPF::startsWithIgnoreCase(node.getPath(), "/dev/cu.usb");
};
FSList portList;
portList.reserve(16);