Hello, I wish to use UART over USB.
If I use pins P0.05 to 8 (i need HW flow control), is that the serial port detected in Windows ?
Hello, I wish to use UART over USB.
If I use pins P0.05 to 8 (i need HW flow control), is that the serial port detected in Windows ?
You need to replace the 'x' in /dev/ttyACMx with the correct number in your case, typically 0. (You should be able to see it from dmesg when you plug in the device, and also /var/log/messages or /var/log/syslog). One way to determine t is to grep for ttyACM:
dmesg | grep ttyACM
A, yes. I read your commend too quickly. Glad to hear you got it working :)