Kludge Tracker: Gnuradio - v3.4.0-101-g7e2b45b
Parent Directory
(gnuradio/gr-uhd)
Kludge Summary of gnuradio/gr-uhd/lib
| Total Kludges |
2 |
| Total Subdirs |
0 |
All Directories within gnuradio/gr-uhd/lib
All Files within gnuradio/gr-uhd/lib
Kludge Snippets in gnuradio/gr-uhd/lib
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(