All of lore.kernel.org
 help / color / mirror / Atom feed
* tncs and kiss mode
@ 2006-01-30  2:59 Ted Gervais
  2006-01-30  3:29 ` Jeremy Utley
  0 siblings, 1 reply; 20+ messages in thread
From: Ted Gervais @ 2006-01-30  2:59 UTC (permalink / raw)
  To: linux-hams

What is the command to take my kpc-9612 out of kiss mode and also to put it 
back in kiss.
I want to do this from a linux console rather than through an 
application.  Just a simple way of bringing up an empty terminal  on my 
linux machine and typing in something that will talk to the tnc.


---
Ted Gervais,
Coldbrook, Nova Scotia, Canada

^ permalink raw reply	[flat|nested] 20+ messages in thread
* RE: tncs and kiss mode
@ 2006-01-30 12:58 Albert Duane Lawson
  0 siblings, 0 replies; 20+ messages in thread
From: Albert Duane Lawson @ 2006-01-30 12:58 UTC (permalink / raw)
  To: linux-hams

This should do what you want....

kisson:

#!/bin/bash
#
#  Simple Script to put TNC's into KISS mode or
#  take them out of KISS mode.
#
BAUD="9600"

/bin/stty $BAUD < /dev/ttyS0
/bin/echo -e "kiss on\rrestart\r" > /dev/ttyS0
/bin/sleep 2

kissoff

#!/bin/bash
#
#  Simple Script to put TNC's into KISS mode or
#  take them out of KISS mode.
#
BAUD="9600"

stty $BAUD < /dev/ttyS0
echo -e "\r\xC0\xFF\r" > /dev/ttyS0
sleep 2

Substitute the appropriate command in parantheses for your brand of TNC. 
The above
works on MFJ's.

73's

Albert - WB7AWL
 


^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2006-02-17  6:07 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-01-30  2:59 tncs and kiss mode Ted Gervais
2006-01-30  3:29 ` Jeremy Utley
2006-01-30  9:47   ` Ted Gervais
2006-01-30 11:03     ` Bob Nielsen
2006-01-30 13:58     ` Wilson G. Hein
2006-01-30 18:17       ` Gérard / F6FGZ
2006-01-30 18:23         ` Jeremy Utley
2006-01-30 20:30         ` Douglas Cole
2006-01-30 20:39           ` Tomi Manninen
2006-01-30 20:48           ` Douglas Cole
2006-01-30 20:57             ` Douglas Cole
2006-01-30 21:00             ` J. Lance Cotton
2006-01-30 21:37             ` Oliver Hohlfeld
2006-01-30 23:26               ` Douglas Cole
2006-01-30 21:05           ` Oliver Hohlfeld
2006-01-30 21:07           ` Oliver Hohlfeld
2006-01-30 20:47         ` Bill Vodall WA7NWP
2006-01-30 21:08           ` Curt, WE7U
2006-02-17  6:07             ` CONVERS Primary server Bill Vodall WA7NWP
  -- strict thread matches above, loose matches on Subject: below --
2006-01-30 12:58 tncs and kiss mode Albert Duane Lawson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.