Kludge Tracker: Gnuradio - v3.4.0-101-g7e2b45b
Parent Directory
(gnuradio)
Kludge Summary of gnuradio/gr-uhd
| Total Kludges |
4 |
| Total Subdirs |
3 |
All Directories within gnuradio/gr-uhd
All Files within gnuradio/gr-uhd
Kludge Snippets in gnuradio/gr-uhd
gnuradio/gr-uhd/apps/uhd_fft.py
| Category |
FIXME |
| Committer |
Tom Rondeau |
| Commit ID |
6736e9623fe35bfac53886c41766f166331fd4ca |
156
157 def _build_subpanel(self, vbox_arg):
158 # build a secondary information panel (sometimes hidden)
159
160 # FIXME figure out how to have this be a subpanel that is always
161 # created, but has its visibility controlled by foo.Show(True/False)
162
163 def _form_set_samp_rate(kv):
164 return self.set_samp_rate(kv['samprate'])
gnuradio/gr-uhd/lib/gr_uhd_usrp_source.cc — 1
| Category |
TODO |
| Committer |
Josh Blum |
| Commit ID |
081497e75e89ab1343ee020013f5fd05275b6188 |
201
202 //handle possible errors conditions
203 switch(_metadata.error_code){
204 case uhd::rx_metadata_t::ERROR_CODE_NONE:
205 //TODO insert tag for time stamp
206 break;
207
208 case uhd::rx_metadata_t::ERROR_CODE_TIMEOUT:
209 //Assume that the user called stop() on the flow graph.
gnuradio/gr-uhd/lib/gr_uhd_usrp_source.cc — 2
| Category |
TODO |
| Committer |
Josh Blum |
| Commit ID |
081497e75e89ab1343ee020013f5fd05275b6188 |
211 return WORK_DONE;
212
213 case uhd::rx_metadata_t::ERROR_CODE_OVERFLOW:
214 //ignore overflows and try work again
215 //TODO insert tag for overflow
216 return work(noutput_items, input_items, output_items);
217
218 default:
219 std::cout << boost::format(
gnuradio/gr-uhd/swig/uhd_swig.i
| Category |
Magic |
| Committer |
Josh Blum |
| Commit ID |
343cba5663d0eefdd3ee3918bef812dc1bd75508 |
105
106 %template(dboard_iface_sptr) boost::shared_ptr<uhd::usrp::dboard_iface>;
107
108 ////////////////////////////////////////////////////////////////////////
109 // block magic
110 ////////////////////////////////////////////////////////////////////////
111 GR_SWIG_BLOCK_MAGIC(uhd,usrp_source)
112 %include <gr_uhd_usrp_source.h>
113