[aprssig] Re: [Xastir] Investigation into TELEM packets (temporary fix)

Andrew Rich vk4tec at tech-software.net
Fri Sep 30 04:57:23 EDT 2005


Here is a temporary script that gets around XASTIR not decoding TELEM on TNC port and uses XASTIR local port 

#!/usr/bin/perl 
use Net::Telnet;
$host = "localhost";
$t = new Net::Telnet(Timeout=> '50', port => '2023');
$t->Net::Telnet::open($host);
sleep 2;
print $t "user VK4TEC pass 21694 \n";
sleep 3;
open (tnc, "/dev/ttyS1");
while (<tnc>)
{
print $t $_ ;
}




More information about the aprssig mailing list