; STARTUP.txt created by AJ0C for use when using Kenwood TH-D7A(G) as TNC ; while running WinPack v6.80 ; ; Place this file in the WINPACK\SCRIPTS directory ; ; The title. TITLE Startup Set TH-D7 ;wait until disconnected - just a precaution! WAITDIS ;send just a and wait for the prompt. ;helps to get things going with some TNCs when ;they have been left connected to the radio and ;disconnected from the PC. SEND ;wait for the prompt. WAITFOR cmd: ; make sure XFLOW is on since we are using XON/XOFF SEND XFLOW ON WAITFOR cmd: ;Turn off ECHO and FLOW SEND ECHO OFF WAITFOR cmd: SEND FLOW OFF WAITFOR cmd: ; load TNC's MYCALL with MYCALL value from WinPack SEND MYCALL $MYCALL WAITFOR cmd: ; set beacon text using system variables SEND BTEXT $MYCALL -- $1STNAME in $QTH using Knwd TH-D7A(G) ; set beacon interval 30 minutes of no activity on frequency (1 unit = 10 seconds) 180 = 30 Minutes SEND B AFTER 180 WAITFOR cmd: ; set Conection Text and turn on Connection Message SEND CTEXT Welcome to $MYCALL's Packet System send /h for Help... WAITFOR cmd: SEND CMSG ON ; turn on monitor SEND M ON WAITFOR cmd: ; turn-off monitoring while connected SEND MCON OFF WAITFOR cmd: ; configure Monitoring of Supervisour (control) packets ; turn on to see the packets ; turn off to avoid seeing them ; Control packets, when displayed, are distinguished from information packets ; by the "<>" and "<<>>" character sets appended to the packet header. ; With these characters, a letter is included to denote thetype of control packet. ; List of some control characters: ; <> - a connect request packet. ; <> - Unnumbered Acknowledgement ; SEND MCOM OFF ; EOF