change from ZVEI2 to ZVEI1

This commit is contained in:
Bastian Schroll 2017-03-05 20:21:16 +01:00
parent 81e83e4c2e
commit 98b50110a0
2 changed files with 2 additions and 2 deletions

View file

@ -178,7 +178,7 @@ try:
demodulation += "-a FMSFSK "
logging.debug(" - Demod: FMS")
if "ZVEI" in args.demod:
demodulation += "-a ZVEI2 "
demodulation += "-a ZVEI1 "
logging.debug(" - Demod: ZVEI")
if "POC512" in args.demod:
demodulation += "-a POCSAG512 "

View file

@ -33,7 +33,7 @@ def decode(freq, decoded):
# ZVEI Decoder Section
# check ZVEI: -> validate -> check double alarm -> log
elif "ZVEI2:" in decoded:
elif "ZVEI1:" in decoded:
logging.debug("received ZVEI")
from includes.decoders import zvei
zvei.decode(freq, decoded)