Kludge Tracker: Gnuradio - v3.4.0-101-g7e2b45b

Parent Directory (gnuradio/usrp2/host)

Kludge Summary of gnuradio/usrp2/host/apps

Total Kludges 5
Total Subdirs 0

All Directories within gnuradio/usrp2/host/apps

All Files within gnuradio/usrp2/host/apps

Kludge Snippets in gnuradio/usrp2/host/apps

gnuradio/usrp2/host/apps/rx_streaming_samples.cc — 1

Category FIXME
Committer jcorgan
Commit ID e0fcbaee124d3e8c4c11bdda662f88e082352058
60        }
61        
62        // ------------------------------------------------------------------------
63        
64        // FIXME make this a template
65        
66        class file_writer_16sc : public usrp2::rx_nop_handler
67        {
68          FILE	       *d_fp;
				

gnuradio/usrp2/host/apps/rx_streaming_samples.cc — 2

Category FIXME
Committer jcorgan
Commit ID e0fcbaee124d3e8c4c11bdda662f88e082352058
291            std::cerr << "Failed to enable realtime scheduling" << std::endl;
292        
293          usrp2::usrp2::sptr u2 = usrp2::usrp2::make(interface, mac_addr_str);
294          
295          // FIXME in case it was left running...
296          if (!u2->stop_rx_streaming()){
297            fprintf(stderr, "stop_rx_streaming failed\n");
298          }
299        
				

gnuradio/usrp2/host/apps/stdin_int32_fft.py — 1

PyFlakes undefined name 'ok'
Committer jcorgan
Commit ID e0fcbaee124d3e8c4c11bdda662f88e082352058
164                input_rate = 100e6 / self.options.decim
165                self.scope.set_sample_rate(input_rate)
166                if self.show_debug_info:  # update displayed values
167                    self.myform['decim'].set_value(self.u.decim_rate())
168                return ok
169        
170            def _setup_events(self):
171        	if not self.options.waterfall and not self.options.oscilloscope:
172        	    self.scope.win.Bind(wx.EVT_LEFT_DCLICK, self.evt_left_dclick)
				

gnuradio/usrp2/host/apps/stdin_int32_fft.py — 2

Category FIXME
Committer jcorgan
Commit ID e0fcbaee124d3e8c4c11bdda662f88e082352058
108        
109            def _build_subpanel(self, vbox_arg):
110                # build a secondary information panel (sometimes hidden)
111        
112                # FIXME figure out how to have this be a subpanel that is always
113                # created, but has its visibility controlled by foo.Show(True/False)
114                
115                def _form_set_decim(kv):
116                    return self.set_decim(kv['decim'])
				

gnuradio/usrp2/host/apps/tx_samples.cc

Category FIXME
Committer jcorgan
Commit ID e0fcbaee124d3e8c4c11bdda662f88e082352058
256              if (fseek(fp, 0, SEEK_SET) == -1)
257        	break;
258            }
259        
260            // FIXME if r < 9, pad to 9 for minimum packet size constraint
261        
262            if (!u2->tx_16sc(0, samples, r, &md)){
263              fprintf(stderr, "tx_complex_int16 failed\n");
264              break;