Linux HAM/Amateur Radio development
 help / color / mirror / Atom feed
* KISS mode
@ 2002-04-26 21:32 charlie carroll
  2002-04-26 22:27 ` Bob Nielsen
  2002-04-27  6:57 ` Randy N6ABM
  0 siblings, 2 replies; 10+ messages in thread
From: charlie carroll @ 2002-04-26 21:32 UTC (permalink / raw)
  To: linux-hams

Can someone point me to the commands to put an external TNC into and out 
of KISS mode?

Thanks

Charlie, k1xx


^ permalink raw reply	[flat|nested] 10+ messages in thread
* Re: KISS Mode
@ 2002-04-27 18:38 Mike Fenske
  0 siblings, 0 replies; 10+ messages in thread
From: Mike Fenske @ 2002-04-27 18:38 UTC (permalink / raw)
  To: linux-hams

I use minicom. I setup a minicom configuration file called "ax25". Here I
set baud rate to 9600, set the proper serial port and cleared all modem
commands. I set modem initialization string to C0 FF C0 ^M. To do this,
since I couldn't figure how to set those codes in minicom, I set the string
to 123^M and then edited the config file with a hex editor. Then I just
start "minicom ax25" and my TNC (KPC-9612) goes to command mode and I can
use minicom to communicate. When finished I use INTFACE XKISS, RESET. Hope
this helps,

Mike
VE7MKF

>On Friday 26 April 2002 09:32 pm, charlie carroll wrote:
> Can someone point me to the commands to put an external TNC into
> and out of KISS mode?
>
> Thanks
>
> Charlie, k1xx



^ permalink raw reply	[flat|nested] 10+ messages in thread
* KISS Mode
@ 2004-02-23 16:19 Cristiano Tavares - SP
  2004-02-23 16:21 ` Riley Williams
  0 siblings, 1 reply; 10+ messages in thread
From: Cristiano Tavares - SP @ 2004-02-23 16:19 UTC (permalink / raw)
  To: linux-hams, Debian Ham (Correio electrónico)

73's

Is there any program that makes the tnc pass to kiss using the shell, just like KISSER was used in DOS?


^ permalink raw reply	[flat|nested] 10+ messages in thread
* Re: KISS Mode
@ 2004-02-23 16:45 Dennis Boone
  0 siblings, 0 replies; 10+ messages in thread
From: Dennis Boone @ 2004-02-23 16:45 UTC (permalink / raw)
  To: linux-hams

 > Is there any program that makes the tnc pass to kiss using the shell,
 > just like KISSER was used in DOS?

The following perl script gets a Kantronics TNC _out_ of KISS mode;
may work for others, I haven't read manuals or tried it.

    #!/usr/bin/perl

    $dev = shift(@ARGV);
    $speed = shift(@ARGV);

    open(DEV, "+<$dev") ||
        die "unable to open $dev: $!";

    print DEV chr(0xc0), chr(0xff), chr(0xc0);

    close(DEV);

Sample usage: kissoff /dev/ttyS0 1200

To get the TNC into KISS mode, you can generally use minicom or kermit
to to connect to the TNC, get it into command mode, then type the
appropriate command.  For a Kantronics unit that would be:

    intface kiss
    reset

which sticks when you turn off the power.  The command may be
different for other brands; I have manuals for the PK-900 and PK-232,
but they are at home right now.

De

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

end of thread, other threads:[~2004-02-25  5:04 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-04-26 21:32 KISS mode charlie carroll
2002-04-26 22:27 ` Bob Nielsen
2002-04-26 23:28   ` Tomi Manninen
2002-04-27  7:08   ` Richard Adams
2002-04-27  6:57 ` Randy N6ABM
  -- strict thread matches above, loose matches on Subject: below --
2002-04-27 18:38 KISS Mode Mike Fenske
2004-02-23 16:19 Cristiano Tavares - SP
2004-02-23 16:21 ` Riley Williams
2004-02-25  5:04   ` Steve Stuart
2004-02-23 16:45 Dennis Boone

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox