-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathFT8follow
More file actions
executable file
·59 lines (43 loc) · 1.17 KB
/
FT8follow
File metadata and controls
executable file
·59 lines (43 loc) · 1.17 KB
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
53
54
55
56
57
58
#! /bin/tcsh
# Script to make SDR follow rig on adjacent bands - very similar to FT8tri
# This doesn't work quite right on 80m bx of filtering in rig - ugh!
cd ~/Python/pySDR
set PY_SDR = "pySDR.py"
# We need three freqs to set up 3 receivers
set FRQS = "10136 14074 18100"
set RTL="-rtlhf"
set RTL=""
set LOOPBACK="-loopback"
#set LOOPBACK=""
set FS=8
# This is the main difference from FT8tri - select RF out from rig and follow the rig
set HOPPER='-ant B -follow'
#set HOPPER=""
start_loopback
pkill pySDR
#pkill bandmap
#pkill rigctld
# Testing to look at RF spectrum
$PY_SDR -fc 3573 -fs 8 -IF 0 -mode USB -af_bw 4 $HOPPER &
exit
$PY_SDR $RTL -fc $FRQS -fs $FS -IF 0 -mode USB -fsout 48 -af_bw 4 $HOPPER $LOOPBACK &
#exit
sleep 5
# Sometimes we need to use pavucontrol to direct audio to right place
wsjtx -r SDR1 &
sleep 1
wsjtx -r SDR2 &
sleep 1
wsjtx -r SDR3 &
#exit
sleep 5
cd ~/Python/bandmap
set BANDMAP=~/Python/bandmap/bandmap.py
#$BANDMAP -rig NONE -server WSJT3 -dx &
$BANDMAP -rig NONE -wsjt SDR1 -dx &
sleep 1
#$BANDMAP -rig NONE -server WSJT4 -dx &
$BANDMAP -rig NONE -wsjt SDR2 -dx &
sleep 1
#$BANDMAP -rig NONE -server WSJT4 -dx &
$BANDMAP -rig NONE -wsjt SDR3 -dx &