Hello
I want to establish 2-way communication between my PC and TP-Link TL-WR741ND router.
I can send from the router to my PC using command:
echo -e -n "\x9B ....." /dev/ttyS0
and it works fine.
Now I want to send data from my PC and receive it on my Router
I tried cat but doesn't work:
stty 115200 < /dev/ttyS0 #Set the baud rate
cat /dev/ttyS0 > a.txt #Copy the received data from ttyS0 to file a.txt
Any suggestions?
(Last edited by eng.hassan23 on 4 Mar 2012, 13:50)