Add script to invoke kermit with a particular port and speed

This commit is contained in:
maralvira 2010-11-07 14:15:40 +00:00
parent 2ac88222f6
commit 62a45c7ba2

13
cpu/mc1322x/tools/run-kermit Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/kermit +
echo "Opening \%1 at \%2 baud..."
set line \%1
if failure { echo "Couldn't open \%1" , exit }
set carrier-watch off
set flow-control none
set speed \%2
set serial 8n1
set key \127 \8
connect
quit