From b95b3ce4553442a97ce6ed19d907527ac0d90d96 Mon Sep 17 00:00:00 2001 From: Justin R. Cutler Date: Thu, 31 May 2012 17:05:23 -0700 Subject: pager: fix frequency display when not default --- gr-pager/apps/usrp_flex_all | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gr-pager') diff --git a/gr-pager/apps/usrp_flex_all b/gr-pager/apps/usrp_flex_all index 75c4c1e73..8ecf5a41f 100755 --- a/gr-pager/apps/usrp_flex_all +++ b/gr-pager/apps/usrp_flex_all @@ -98,9 +98,9 @@ class app_top_block(gr.top_block): mid_chan = int(self.nchan/2) for i in range(self.nchan): if i < mid_chan: - freq = 930.5e6+i*25e3 + freq = options.freq+i*25e3 else: - freq = 930.5e6-(self.nchan-i)*25e3 + freq = options.freq-(self.nchan-i)*25e3 if (freq < 929.0e6 or freq > 932.0e6): self.connect((self.bank, i), gr.null_sink(gr.sizeof_gr_complex)) -- cgit