From e87e955d29495ad240eba876ae2db86851c61cd2 Mon Sep 17 00:00:00 2001 From: Roman Khassraf Date: Sat, 1 Oct 2016 13:00:43 +0200 Subject: [PATCH] #208: fixed samp_rate variable --- apps/helpers/grgsm_capture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/helpers/grgsm_capture.py b/apps/helpers/grgsm_capture.py index caea805..a0a2b8c 100755 --- a/apps/helpers/grgsm_capture.py +++ b/apps/helpers/grgsm_capture.py @@ -86,7 +86,7 @@ class grgsm_capture(gr.top_block): fc=fc, samp_rate_in=samp_rate, ) - self.gsm_clock_offset_control = grgsm.clock_offset_control(fc-shiftoff, sample_rate, osr=4) + self.gsm_clock_offset_control = grgsm.clock_offset_control(fc-shiftoff, samp_rate, osr=4) if self.burst_file: self.gsm_burst_file_sink = grgsm.burst_file_sink(self.burst_file)