I need to find the linux way of running the following DOS commands:

MODE COM1: 9600,N,8,1,P
COPY FIRMWARE.COD COM1 

Is this possible? I know COM1 in Linux is /dev/ttyS0 but that's about it. How do you set the mode on it and perform the copy?

Thanks a lot in advance.

link|improve this question

70% accept rate
feedback

1 Answer

up vote 4 down vote accepted

Set tty device settings:

stty -F /dev/ttyS0 9600 -parity cs8 -cstopb

Send data:

cat firmware.cod > /dev/ttyS0
link|improve this answer
excellent! thank you very much! – nmuntz Sep 22 '10 at 19:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.