I am trying to get a Raspberry Pi to communicate with a microcontroller via a USB - Serial adapter.
The microcontroller requires a baud rate of 1562500. This rate is not supported as one of minicom's standard baud rates.
Is there anyway to change the baud rate on minicom to 1562500?
sudo screen -L /dev/ttyACM0 9600. This will connect to the first COM port at 9600 baud and log (option-L) the output to filescreenlog.0. Escape by Ctrl + A, K. It can also run in the background, even after logging off (Ctrl + A, D. Reconnect withscreen -r). – Peter Mortensen Mar 17 '20 at 18:26