; STARTUP.txt created by AJ0C ; PMS: WinPack V6.80 (Comm Port set to 9600, N, 8, 1) ; TNC: Kenwood TM-D700's internal TNC ; ; Place this file in the WINPACK\SCRIPTS directory ; ; Created: 2007-08-26 ; Title a1: Startup TM-D700 Internal ; ; No matter what mode the TNC in the rig is in when ; the script is run. It should work if the TNC is ; disabled, in TNC APRS mode, or in TNC PKT mode. ; (The rig must be switched on!) ; ; ** You'll need to modify the UNPROTO command line for your personal location ** ; ; ; Make sure you are in command mode SEND ^C ; (Alfa India space One) while in OFF, RC or APRS mode is used to turn on the "monitoring" feature ; This will "echo" or "return" the control commands for what the radio is doing at the time. SEND AI 1 ; Control mode on. SEND TC 1 ;Select data band as 'A'. Change to '1' for 'B'. SEND DTB 0 ; Select band 'A' value=(0,0) for band 'B' value=(1,1). SEND BC 0,0 ; Place Band A in VFO mode ; VMC [A|B],[mode] [A=0,B=1] [VFO=0, 2=Memory, 3=call] SEND VMC 0,0 border="2" cellpadding="4" summary="Table"; Set the frequency to 145.050. The '0' on the end ; is the tuning step = 5kHz. I don't think you can set ; the frequency without setting the step. The valid ; range is '0' to '9', which correspond to the steps ; manually selectable on the rig. ; 0 = 5kHz ; 5 = 12.5kHz ; 6 = 25kHz ; 9 = 100kHz. ;Obviously you put in the appropriate freqeuncy for ;your location, but keep the same number of digits. SEND FQ 00145050000,0 ;No shift. SEND SFT 0 ;TNC PKT mode. SEND TNC 2 ; Select band 'B' for (PTT,CTRL) value=(PTT,CTRL) A=0 B=1. SEND BC 1,1 ;Exit Control Mode (this command must follow all other radio configuration commands) SEND TC 0 SEND RESTART WAITFOR cmd: ;Now the TNC parameters. ;The two "SEND ECHO OFF" lines are deliberate. SEND ECHO OFF SEND ECHO OFF WAITFOR cmd: ;Change to 9600 if you use 9600 baud on-air. ;In U.S. on 2mtr make sure you set to 1200 for 1200 on-air baud rate. SEND HB 1200 WAITFOR cmd: ;Prevent Connection while configuring TNC parameters. SEND CONOK OFF ; Enable connection time stamp SEND CONSTAMP ON ;Turn on DAYSTAMP - When on, pressing [Ctrl]+[T] in Converse mode causes the ; TNC to send date data in addition to time data. SEND DAYSTAMP ON WAITFOR cmd: SEND MSTAMP ON WAITFOR cmd: SEND HEADERLN ON WAITFOR cmd: SEND XFLOW OFF WAITFOR cmd: SEND NEWMODE ON WAITFOR cmd: SEND NOMODE OFF WAITFOR cmd: ; load TNC's MYCALL with $MYCALL value from WinPack. WinPack stores the value ; in the PERSONAL.TXT file in the \WINPACK directory. You may either edit the ; PERSONAL.TXT file if WinPack is not active or you may use the ; functions on the command bar of WinPack if WinPack ; is running. ; Also set MYMCALL$MYCALL and standard default SSIDs of PBBS/1 and ; NODE/7 SEND MYCALL $MYCALL WAITFOR cmd: SEND MYMCALL $MYCALL-1 WAITFOR cmd: ; set beacon text using system variables SEND BTEXT $MYCALL (WinPack), $MYCALL-1/B -- $1STNAME in $QTH using Knwd TM-D700 ; 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 ;send the daytime string. ;this will have the tokens substituted. SEND DAYTIME $YY$MM$DD$HH$NN$SS 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 WAITFOR cmd: ; turn-off monitoring while connected SEND MCON OFF WAITFOR cmd: ; turn on monitor SEND M ON WAITFOR cmd: ; The permanent use of "UITRACE TEMP" to support TEMPn-N digipeating ; not only gives us an instant temporary alternate entwork for exercises ; on alternate frequencies such as 145.01 (used Field Day), but also then ; gives us a permanent shadow network all the rest of the time on 144.390 ; that anyone can use as a first hop if they cannot get out with WIDE1-1 or ; WIDEn-N. This parameter will not impact packet operations but is a must ; set value for APRS operations. Also set "UIFLOOD 30,ID" or "UIFLOOD ss,30,ID" ; DO NOT leave set to "UIFLOOD NOID" this is counter to the New-N-Paradigm. ; : To use D700 as WIDEn-N digi set "UITRACE WIDE" othterwise set "UITRACE TEMP" SEND UITRACE TEMP WAITFOR cmd: SEND UIFLOOD 30,ID WAITFOR cmd: ; one more fix of a poor default set "TXDELAY 20" was "50" eliminate 300 miliseconds ; of delay during keyup and improve network throughput. SEND TXDELAY 20 WAITFOR cmd: ; ; ; ; *** EDIT THE FOLLOWING "SEND" LINES for PERSONAL or LOCAL Acceptance guidelines *** ; ; set beacon interval (increments of 10 seconds) 120 = 20 Minutes; 180 = 30 Minutes ; use AFTER to beacon after no activity has been heard on the frequency SEND B AFTER 180 WAITFOR cmd: ; Set UNPROTO values following the "VIA" as required for your staion's location ; UNPROTO controls how the BTEXT is transmitted ; Set unproto to "BEACON VIA CENT, DRL" SEND UNPROTO BEACON VIA CENT, DRL ; ; ;Add whatever other TNC params you need. (Remember "WAITFOR cmd:" after each "SEND param" line.) ; ; ; ; ;Allow Connection after configuring TNC parameters. SEND CONOK ON ; EOF ;Add whatever other TNC params you need.