aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorPiotr Krysik <ptrkrysik@gmail.com>2016-07-17 10:43:00 +0200
committerPiotr Krysik <ptrkrysik@gmail.com>2016-07-17 10:43:00 +0200
commit196982b6cec7054e99bcc73497b6be2436b98585 (patch)
treeafe953fc86dd64e45a463af85f3f9199a855d8cc /apps
parent2a39bb1aea70545d669a145c8051e75462191e2e (diff)
Removed old icmp packages preventing code
Diffstat (limited to 'apps')
-rwxr-xr-xapps/grgsm_decode8
1 files changed, 1 insertions, 7 deletions
diff --git a/apps/grgsm_decode b/apps/grgsm_decode
index 968c1da..d09372f 100755
--- a/apps/grgsm_decode
+++ b/apps/grgsm_decode
@@ -363,10 +363,6 @@ if __name__ == '__main__':
arfcn = grgsm.arfcn.downlink2arfcn(options.fc, band)
break
- # open udp port 4729 to avoid icmp messages
- #sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
- #sock.bind(("localhost", 4729))
-
# instanciate decoder
tb = grgsm_decoder(timeslot=options.timeslot, subslot=options.subslot, chan_mode=options.chan_mode,
burst_file=options.burst_file,
@@ -374,11 +370,9 @@ if __name__ == '__main__':
a5=options.a5, a5_kc=kc,
speech_file=options.speech_output_file, speech_codec=tch_codecs.get(options.speech_codec),
verbose=options.verbose,
- print_bursts=options.print_bursts)
+ print_bursts=options.print_bursts, ppm=options.ppm)
# run
tb.start()
tb.wait()
- # we are done, close socket
- #sock.close()