Sfoglia il codice sorgente

Add testing tool and usage guide

tags/v1.3
Nico Rey 4 anni fa
parent
commit
43bdc6e2c6
1 ha cambiato i file con 7 aggiunte e 1 eliminazioni
  1. +7
    -1
      test_reception.sh

+ 7
- 1
test_reception.sh Vedi File

@@ -7,7 +7,7 @@ fi

command_exists() {
if ! command -v "$1" &> /dev/null; then
echo "Required command not found: $1"
log "Required command not found: $1" "ERROR"
exit 1
fi
}
@@ -21,6 +21,12 @@ command_exists "socat"

IP=$(ip route | grep "link src" | awk {'print $NF'})

if pgrep "rtl_fm" > /dev/null
then
log "There is an existing rtl_fm instance running, I quit" "ERROR"
exit 1
fi

echo "$(tput setaf 2)
The server is in testing mode tuned to $1 Mhz!
Open a terminal in your computer and paste:


Caricamento…
Annulla
Salva