I am trying to read data on a serial port.
My setup
- OS: Ubuntu linux
- Device 1: BeagleBoard
- Device 2: My laptop
I am using a serial to usb converter. On the BeagleBoard, the serial device is ttyS2
. On the laptop, it is ttyUSB0
.
I did a simple thing to test the connection, I ran Minicom on both the machines. When I type something on BeagleBoard I receive data on laptop but it doesn't work the opposite way. What can be the reason?
The setting for serial port on both the devices are
- Baud rate: 115200
- Data size: 8
- Parity:N
- stop bit:1
- Hardware flow control : no
cat /proc/tty/driver/serial
at both ends woul be helpful. – ninjalj