From 8f9de1e27ae724ffce037e38fa35a100cf7aa400 Mon Sep 17 00:00:00 2001 From: Mark Jessop Date: Sun, 26 Sep 2021 18:11:01 +0930 Subject: [PATCH] Add cd's to horusdemodlib to startup scripts --- start_dual_4fsk.sh | 4 ++++ start_dual_rtty_4fsk.sh | 4 ++++ start_rtlsdr.sh | 6 ++++++ 3 files changed, 14 insertions(+) diff --git a/start_dual_4fsk.sh b/start_dual_4fsk.sh index 7531d77..fc29178 100755 --- a/start_dual_4fsk.sh +++ b/start_dual_4fsk.sh @@ -7,6 +7,10 @@ # Modem statistics are sent out via a new 'MODEM_STATS' UDP broadcast message every second. # +# Change directory to the horusdemodlib directory. +# If running as a different user, you will need to change this line +cd /home/pi/horusdemodlib/ + # Receive requency, in Hz. This is the frequency the SDR is tuned to. RXFREQ=434195000 diff --git a/start_dual_rtty_4fsk.sh b/start_dual_rtty_4fsk.sh index f106fd6..b120688 100755 --- a/start_dual_rtty_4fsk.sh +++ b/start_dual_rtty_4fsk.sh @@ -9,6 +9,10 @@ # Modem statistics are sent out via a new 'MODEM_STATS' UDP broadcast message every second. # +# Change directory to the horusdemodlib directory. +# If running as a different user, you will need to change this line +cd /home/pi/horusdemodlib/ + # Receive requency, in Hz. This is the frequency the SDR is tuned to. RXFREQ=434645000 diff --git a/start_rtlsdr.sh b/start_rtlsdr.sh index 1c14e56..ddaddcd 100755 --- a/start_rtlsdr.sh +++ b/start_rtlsdr.sh @@ -5,6 +5,12 @@ # Uses rtl_fm to receive a chunk of spectrum, and passes it into horus_demod. # + +# Change directory to the horusdemodlib directory. +# If running as a different user, you will need to change this line +cd /home/pi/horusdemodlib/ + + # Receive *centre* frequency, in Hz # Note: The SDR will be tuned to RXBANDWIDTH/2 below this frequency. RXFREQ=434200000