VDLm2dec: Porovnání verzí
(→systemctl) |
(→systemctl) |
||
Řádka 38: | Řádka 38: | ||
[Install] | [Install] | ||
WantedBy=multi-user.target | WantedBy=multi-user.target | ||
+ | Také vytvořit konfigurační soubor. Samozřejmně nezapomeňte přenastavit hodnoty dle vaší lokalizace. | ||
+ | |||
+ | sudo nano /etc/default/acarsdec | ||
+ | |||
+ | #!/bin/sh | ||
+ | # Seting for vdlm2dec | ||
+ | # =================== | ||
+ | |||
+ | # RTL dongle number or S/N | ||
+ | DEV="1" | ||
+ | |||
+ | # set rtl ppm frequency correction | ||
+ | PPM="51" | ||
+ | |||
+ | # Set rtl preamp gain in tenth of db (ie -g 90 for +9db).. | ||
+ | # By default use maximum gain | ||
+ | GAIN="480" | ||
+ | |||
+ | # Send acars messages to addr:port via UDP | ||
+ | SERVER="feed.acars.io:5555" | ||
+ | |||
+ | # Station id used in acarsdec network format (for json output) | ||
+ | STATIONID="TT-LKCM1-VDLM2" | ||
+ | |||
+ | # VHF frequencies f1 and optionally f2 to f8 in Mhz | ||
+ | FREQ="136.725 136.775 136.800 136.825 136.875 136.975" | ||
+ | |||
+ | # Output massages | ||
+ | # -G : messages from ground station | ||
+ | # -E : empty messages | ||
+ | # -U : undecoded messages | ||
+ | MAS="-G -E -U" | ||
+ | |||
+ | # Output format | ||
+ | # -J : json output | ||
+ | # -R : flights & aircrafts registration json output | ||
+ | # -a : aircrafts registration csv output | ||
+ | OUT="-J" | ||
+ | |||
+ | # Other seting | ||
+ | # -v : verbose output | ||
+ | # -q : quiet output | ||
+ | # -b filter : filter acars output by label (ex: -b "H1:Q0" : only output messages with label H1 or Q0) | ||
+ | # -l logfile : output log (stdout by default) | ||
+ | OPTS="-v" | ||
Nastaveni sluzby pro automaticke spustění po startu a následně spustíme | Nastaveni sluzby pro automaticke spustění po startu a následně spustíme |
Verze z 28. 11. 2020, 16:35
Úvod
Jedná se o projekt, slučující více tecnologií do jednoho přehledu https://github.com/TLeconte/
Příprava
Pokud jsme zatím nepotřebovali, je nutné doinstalovat:
sudo apt install cmake
Instalace
Vlastní projekt je k dispozici na gitu. Bohužel je starší a při instalaci na Raspberry je nutná jedna úprava. Stažení projektu:
git clone https://github.com/TLeconte/vdlm2dec.git cd vdlm2dec
Pokud instalaci provádíme na raspberry, změníme v souboru CMakeLists.txt řádek add_compile_options(-Ofast -march=native ) na add_compile_options(-std=c++11 )
Následně můžeme pokračovat kompilaci
mkdir build cd build cmake .. -Drtl=ON make sudo make install
Otestovani
Spusštění pro test
vdlm2dec -G -v -g 48 -p 51 -r 0 136.725 136.775 136.800 136.825 136.875 136.975
systemctl
Pro automatické spouštění je nutne nastavit službu
sudo systemctl edit --force --full vdlm2dec.service
[Unit] Description=VDL Mode 2 Documentation=https://github.com/TLeconte/vdlm2dec After=network-online.target [Service] Type=simple #EnvironmentFile=/opt/acarsdeco/acarsdeco2.conf ExecStart=vdlm2dec -v -J -G -E -U -g 48 -p 51 -i TT-LKCM1-VDL -j feed.acars.io:5555 -r 0 136.725 136.775 136.800 136.825 136.875 136.975 [Install] WantedBy=multi-user.target
Také vytvořit konfigurační soubor. Samozřejmně nezapomeňte přenastavit hodnoty dle vaší lokalizace.
sudo nano /etc/default/acarsdec
#!/bin/sh # Seting for vdlm2dec # =================== # RTL dongle number or S/N DEV="1" # set rtl ppm frequency correction PPM="51" # Set rtl preamp gain in tenth of db (ie -g 90 for +9db).. # By default use maximum gain GAIN="480" # Send acars messages to addr:port via UDP SERVER="feed.acars.io:5555" # Station id used in acarsdec network format (for json output) STATIONID="TT-LKCM1-VDLM2" # VHF frequencies f1 and optionally f2 to f8 in Mhz FREQ="136.725 136.775 136.800 136.825 136.875 136.975" # Output massages # -G : messages from ground station # -E : empty messages # -U : undecoded messages MAS="-G -E -U" # Output format # -J : json output # -R : flights & aircrafts registration json output # -a : aircrafts registration csv output OUT="-J" # Other seting # -v : verbose output # -q : quiet output # -b filter : filter acars output by label (ex: -b "H1:Q0" : only output messages with label H1 or Q0) # -l logfile : output log (stdout by default) OPTS="-v"
Nastaveni sluzby pro automaticke spustění po startu a následně spustíme
sudo systemctl enable vdlm2dec.service sudo systemctl start vdlm2dec.service
Po spuštění služby můžeme sledovat co se dějě ...
journalctl -fe -u vdlm2dec.service