Merge pull request #117 from clemibunge/patch-2

Default input Frequency is 434Mhz not 100Mhz
This commit is contained in:
F5OEO 2018-11-11 19:24:38 +01:00 committed by GitHub
commit 432ded74f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ INPUT_GAIN=0
do_freq_setup()
{
FREQ=$(whiptail --inputbox "Choose input Frequency (in MHZ) Default is 100MHZ" 8 78 $INPUT_RTLSDR --title "RTL-SDR Receive Frequency" 3>&1 1>&2 2>&3)
FREQ=$(whiptail --inputbox "Choose input Frequency (in MHZ) Default is 434MHZ" 8 78 $INPUT_RTLSDR --title "RTL-SDR Receive Frequency" 3>&1 1>&2 2>&3)
if [ $? -eq 0 ]; then
INPUT_RTLSDR=$FREQ
fi