;WinPack STARTUP script for the Kenwood TM-D700. ; ;This STARTUP script can be used with the TM-D700 ;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!) TITLE TM-D700 Initialisation SEND ^C SEND AI 1 ;Control mode on. SEND TC 1 ;TNC PKT mode. SEND TNC 2 ;None of the commands from here down to the line of ;'****' are needed, but they provide an example of ;how to configure the rig from a script. ;Select band 'B'. Change the '1's to '0's for 'A'. SEND BC 1,1 ;Set the frequency to 432.650. The '6' on the end ;is the tuning step = 25kHz. 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, 9 = 100kHz. ;Obviously you put in the appropriate freqeuncy for ;your location, but keep the same number of digits. SEND FQ 00432650000,6 ;No shift. SEND SFT 0 ;Select data band as 'B'. Change to '0' for 'A'. SEND DTB 1 ;************************ ;Control mode off. 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: SEND HEADERLN ON WAITFOR cmd: SEND XFLOW OFF WAITFOR cmd: SEND NEWMODE ON WAITFOR cmd: SEND NOMODE OFF WAITFOR cmd: ;Change to 9600 if you use 9600 baud on air. SEND HB 1200 WAITFOR cmd: SEND MYCALL $MYCALL WAITFOR cmd: SEND UNPROTO $BBS WAITFOR cmd: SEND MON ON WAITFOR cmd: ;Add whatever other TNC params you need.