Kludge Tracker: Gnuradio - v3.4.0-101-g7e2b45b
Parent Directory
(gnuradio/gr-gpio/src)
Kludge Summary of gnuradio/gr-gpio/src/python
| Total Kludges |
3 |
| Total Subdirs |
0 |
All Directories within gnuradio/gr-gpio/src/python
All Files within gnuradio/gr-gpio/src/python
Kludge Snippets in gnuradio/gr-gpio/src/python
gnuradio/gr-gpio/src/python/gpio_rx_sfile.py — 1
| Category |
TODO |
| Committer |
jcorgan |
| Commit ID |
48fefc9b6e294c0ecb3cdd826b5a2f4b008fa829 |
61 g = subdev.gain_range()
62 options.gain = float(g[0]+g[1])/2
63
64
65 #TODO setting gain on basicRX only sets the I channel, use a second subdev to set gain of Q channel
66 #see gnuradio-examples/multi-antenna for possible solutions
67 subdev.set_gain(options.gain)
68
69 #TODO check if freq has same problem as gain when trying to use complex mode on basicRX
gnuradio/gr-gpio/src/python/gpio_rx_sfile.py — 2
| Category |
TODO |
| Committer |
jcorgan |
| Commit ID |
48fefc9b6e294c0ecb3cdd826b5a2f4b008fa829 |
65 #TODO setting gain on basicRX only sets the I channel, use a second subdev to set gain of Q channel
66 #see gnuradio-examples/multi-antenna for possible solutions
67 subdev.set_gain(options.gain)
68
69 #TODO check if freq has same problem as gain when trying to use complex mode on basicRX
70 r = u.tune(0, subdev, options.freq)
71 if not r:
72 sys.stderr.write('Failed to set frequency\n')
73 raise SystemExit, 1
gnuradio/gr-gpio/src/python/gpio_usrp_fft.py
| Category |
FIXME |
| Committer |
jcorgan |
| Commit ID |
48fefc9b6e294c0ecb3cdd826b5a2f4b008fa829 |
215
216 def _build_subpanel(self, vbox_arg):
217 # build a secondary information panel (sometimes hidden)
218
219 # FIXME figure out how to have this be a subpanel that is always
220 # created, but has its visibility controlled by foo.Show(True/False)
221
222 def _form_set_decim(kv):
223 return self.set_decim(kv['decim'])