Skip to content

Instantly share code, notes, and snippets.

@ajc
Created January 21, 2011 04:02
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ajc/789214 to your computer and use it in GitHub Desktop.
Save ajc/789214 to your computer and use it in GitHub Desktop.
kermit script to connect to a local serial port
#! /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