Created
January 21, 2011 04:02
-
-
Save ajc/789214 to your computer and use it in GitHub Desktop.
kermit script to connect to a local serial port
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/kermit + | |
; | |
; copy this to ~/bin/kermit-serial and make executable! | |
; | |
set modem type none | |
set line /dev/ttyUSB0 | |
set carrier-watch off | |
set speed 9600 | |
if defined \%1 set speed \%1 | |
set flow rts/cts | |
eightbit | |
; set parity none | |
set stop-bits 1 | |
connect |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment