-
Notifications
You must be signed in to change notification settings - Fork 0
/
ts2000x.rad
52 lines (40 loc) · 896 Bytes
/
ts2000x.rad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# TERM defines the character sent to the RS232 Com port as termination.
TERM:13
# Set the baud rate, other settings are fixed at N81
#BAUD:19200
BAUD:9600
# All lines that start with INIT will be sent to the com port when the
# port is opened. In the order they appear here.
# Turn the sub on.
INIT:SB1;
# Enter Sat mode
#INIT:SA1010000;
# Setup Main VFO
INIT:DC00;
INIT:FR0;
INIT:MD4;
#INIT:FW0001;
INIT:DC11;
INIT:FR1;
INIT:MD4;
#INIT:FW0000;
# Enter Sat mode
INIT:SA1010000;
INIT:RG255;
#INIT:RG;
# Specify the frequency format
RESP:FREQFORMAT:%011lu
# SETUP and SETDN define the command(s) to set the Uplink/Downlink Freq.
RESP:SETUP:FB%uplink%;
RESP:SETDN:FA%downlink%;
RESP:SETDN:FW0000;
# To change bands on the control channel
BANDUP:BU;
BANDDN:BD;
# All EXIT commands run when closing port... someday...
EXIT:SA0010000;
EXIT:RG100;
EXIT:DC00;
EXIT:FR2;
EXIT:DC11;
EXIT:FR2;