Cannot find serial device
I'm trying to connect to a development board using a serial-USB adapter, and can't find the serial port on my Mac.
I tried ls /dev/tty.*
and ls /dev/cu.*
, and nothing relevant shows up on my Mac. I tried on a friends Mac and it does show up!
This must be because I had installed VCP / FTDI drivers in the past on my Mac (can't remember which, but there were a few), which must be interfering. I tried deleting the serial drivers .kext
files in /System/Library/Extensions/
and restarting, but that didn't work. I also tried reinstalling these drivers and restarting, but that didn't work. I've tried 3 other driver sources and that also didn't work.
Also, the device doesn't show up in setting > Network
. Running Mac OS Mojave on both PCs.
Help would be much appreciated!
Solution 1:
You can open System Report and check under USB to see if your USB device was found and initialized.
In terms of device files, you'll want to search for tty* and cu* - do not include the dot.
An easy way to spot the correct device is to run first:
find /dev > list1
then plug in the serial-USB adapter, and run:
find /dev > list2
and then finally:
diff list1 list
then the name of the new device for the serial-USB adapter should be shown.