Merged changeset r9241:9289 from jblum/glwxgui into trunk. Adds OpenGL versions...
[debian/gnuradio] / gr-wxgui / src / python / scopesink_nongl.py
1 #!/usr/bin/env python
2 #
3 # Copyright 2003,2004,2006,2007 Free Software Foundation, Inc.
4
5 # This file is part of GNU Radio
6
7 # GNU Radio is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3, or (at your option)
10 # any later version.
11
12 # GNU Radio is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Radio; see the file COPYING.  If not, write to
19 # the Free Software Foundation, Inc., 51 Franklin Street,
20 # Boston, MA 02110-1301, USA.
21
22
23 from gnuradio import gr, gru, eng_notation
24 from gnuradio.wxgui import stdgui2
25 import wx
26 import gnuradio.wxgui.plot as plot
27 import numpy
28 import threading
29 import struct
30
31 default_scopesink_size = (640, 240)
32 default_v_scale = 1000
33 default_frame_decim = gr.prefs().get_long('wxgui', 'frame_decim', 1)
34
35 class scope_sink_f(gr.hier_block2):
36     def __init__(self, parent, title='', sample_rate=1,
37                  size=default_scopesink_size, frame_decim=default_frame_decim,
38                  v_scale=default_v_scale, t_scale=None, num_inputs=1):
39
40         gr.hier_block2.__init__(self, "scope_sink_f",
41                                 gr.io_signature(num_inputs, num_inputs, gr.sizeof_float),
42                                 gr.io_signature(0,0,0))
43
44         msgq = gr.msg_queue(2)         # message queue that holds at most 2 messages
45         self.guts = gr.oscope_sink_f(sample_rate, msgq)
46         for i in range(num_inputs):        
47           self.connect((self, i), (self.guts, i))
48
49         self.win = scope_window(win_info (msgq, sample_rate, frame_decim,
50                                           v_scale, t_scale, self.guts, title), parent)
51
52     def set_sample_rate(self, sample_rate):
53         self.guts.set_sample_rate(sample_rate)
54         self.win.info.set_sample_rate(sample_rate)
55
56 class scope_sink_c(gr.hier_block2):
57     def __init__(self, parent, title='', sample_rate=1,
58                  size=default_scopesink_size, frame_decim=default_frame_decim,
59                  v_scale=default_v_scale, t_scale=None, num_inputs=1):
60
61         gr.hier_block2.__init__(self, "scope_sink_c",
62                                 gr.io_signature(num_inputs, num_inputs, gr.sizeof_gr_complex),
63                                 gr.io_signature(0,0,0))
64
65         msgq = gr.msg_queue(2)         # message queue that holds at most 2 messages
66         self.guts = gr.oscope_sink_f(sample_rate, msgq)
67         for i in range(num_inputs):      
68                 c2f = gr.complex_to_float()  
69                 self.connect((self, i), c2f)
70                 self.connect((c2f, 0), (self.guts, 2*i+0))
71                 self.connect((c2f, 1), (self.guts, 2*i+1))
72         
73         self.win = scope_window(win_info(msgq, sample_rate, frame_decim,
74                                          v_scale, t_scale, self.guts, title), parent)
75         
76     def set_sample_rate(self, sample_rate):
77         self.guts.set_sample_rate(sample_rate)
78         self.win.info.set_sample_rate(sample_rate)
79
80 class constellation_sink(scope_sink_c):
81     def __init__(self, parent, title='Constellation', sample_rate=1,
82                  size=default_scopesink_size, frame_decim=default_frame_decim):
83         scope_sink_c.__init__(self, parent=parent, title=title, sample_rate=sample_rate,
84                  size=size, frame_decim=frame_decim)
85         self.win.info.xy = True #constellation mode
86
87 # ========================================================================
88
89
90 time_base_list = [                      # time / division
91     1.0e-7,   # 100ns / div
92     2.5e-7,
93     5.0e-7,
94     1.0e-6,   #   1us / div
95     2.5e-6,
96     5.0e-6,
97     1.0e-5,   #  10us / div
98     2.5e-5,
99     5.0e-5,
100     1.0e-4,   # 100us / div
101     2.5e-4,
102     5.0e-4,
103     1.0e-3,   #   1ms / div
104     2.5e-3,
105     5.0e-3,
106     1.0e-2,   #  10ms / div
107     2.5e-2,
108     5.0e-2
109     ]
110
111 v_scale_list = [ # counts / div, LARGER gains are SMALLER /div, appear EARLIER
112     2.0e-3,   # 2m / div, don't call it V/div it's actually counts/div
113     5.0e-3,
114     1.0e-2,
115     2.0e-2,
116     5.0e-2,
117     1.0e-1,
118     2.0e-1,
119     5.0e-1,
120     1.0e+0,
121     2.0e+0,
122     5.0e+0,
123     1.0e+1,
124     2.0e+1,
125     5.0e+1,
126     1.0e+2,
127     2.0e+2,
128     5.0e+2,
129     1.0e+3,
130     2.0e+3,
131     5.0e+3,
132     1.0e+4 # 10000 /div, USRP full scale is -/+ 32767
133     ]
134
135     
136 wxDATA_EVENT = wx.NewEventType()
137
138 def EVT_DATA_EVENT(win, func):
139     win.Connect(-1, -1, wxDATA_EVENT, func)
140
141 class DataEvent(wx.PyEvent):
142     def __init__(self, data):
143         wx.PyEvent.__init__(self)
144         self.SetEventType (wxDATA_EVENT)
145         self.data = data
146
147     def Clone (self): 
148         self.__class__ (self.GetId())
149
150
151 class win_info (object):
152     __slots__ = ['msgq', 'sample_rate', 'frame_decim', 'v_scale', 
153                  'scopesink', 'title',
154                  'time_scale_cursor', 'v_scale_cursor', 'marker', 'xy',
155                  'autorange', 'running']
156
157     def __init__ (self, msgq, sample_rate, frame_decim, v_scale, t_scale,
158                   scopesink, title = "Oscilloscope", xy=False):
159         self.msgq = msgq
160         self.sample_rate = sample_rate
161         self.frame_decim = frame_decim
162         self.scopesink = scopesink
163         self.title = title;
164
165         self.time_scale_cursor = gru.seq_with_cursor(time_base_list, initial_value = t_scale)
166         self.v_scale_cursor = gru.seq_with_cursor(v_scale_list, initial_value = v_scale)
167
168         self.marker = 'line'
169         self.xy = xy
170         if v_scale == None:        # 0 and None are both False, but 0 != None
171             self.autorange = True
172         else:
173             self.autorange = False # 0 is a valid v_scale            
174         self.running = True
175
176     def get_time_per_div (self):
177         return self.time_scale_cursor.current ()
178
179     def get_volts_per_div (self):
180         return self.v_scale_cursor.current ()
181
182     def set_sample_rate(self, sample_rate):
183         self.sample_rate = sample_rate
184         
185     def get_sample_rate (self):
186         return self.sample_rate
187
188     def get_decimation_rate (self):
189         return 1.0
190
191     def set_marker (self, s):
192         self.marker = s
193
194     def get_marker (self):
195         return self.marker
196
197
198 class input_watcher (threading.Thread):
199     def __init__ (self, msgq, event_receiver, frame_decim, **kwds):
200         threading.Thread.__init__ (self, **kwds)
201         self.setDaemon (1)
202         self.msgq = msgq
203         self.event_receiver = event_receiver
204         self.frame_decim = frame_decim
205         self.iscan = 0
206         self.keep_running = True
207         self.start ()
208
209     def run (self):
210         # print "input_watcher: pid = ", os.getpid ()
211         while (self.keep_running):
212             msg = self.msgq.delete_head()   # blocking read of message queue
213             if self.iscan == 0:            # only display at frame_decim
214                 self.iscan = self.frame_decim
215                                 
216                 nchan = int(msg.arg1())    # number of channels of data in msg
217                 nsamples = int(msg.arg2()) # number of samples in each channel
218
219                 s = msg.to_string()      # get the body of the msg as a string
220
221                 bytes_per_chan = nsamples * gr.sizeof_float
222
223                 records = []
224                 for ch in range (nchan):
225
226                     start = ch * bytes_per_chan
227                     chan_data = s[start:start+bytes_per_chan]
228                     rec = numpy.fromstring (chan_data, numpy.float32)
229                     records.append (rec)
230
231                 # print "nrecords = %d, reclen = %d" % (len (records),nsamples)
232
233                 de = DataEvent (records)
234                 wx.PostEvent (self.event_receiver, de)
235                 records = []
236                 del de
237
238             # end if iscan == 0
239             self.iscan -= 1
240     
241
242 class scope_window (wx.Panel):
243
244     def __init__ (self, info, parent, id = -1,
245                   pos = wx.DefaultPosition, size = wx.DefaultSize, name = ""):
246         wx.Panel.__init__ (self, parent, -1)
247         self.info = info
248
249         vbox = wx.BoxSizer (wx.VERTICAL)
250
251         self.graph = graph_window (info, self, -1)
252
253         vbox.Add (self.graph, 1, wx.EXPAND)
254         vbox.Add (self.make_control_box(), 0, wx.EXPAND)
255         vbox.Add (self.make_control2_box(), 0, wx.EXPAND)
256
257         self.sizer = vbox
258         self.SetSizer (self.sizer)
259         self.SetAutoLayout (True)
260         self.sizer.Fit (self)
261         self.set_autorange(self.info.autorange)
262         
263
264     # second row of control buttons etc. appears BELOW control_box
265     def make_control2_box (self):
266         ctrlbox = wx.BoxSizer (wx.HORIZONTAL)
267
268         self.inc_v_button = wx.Button (self, 1101, " < ", style=wx.BU_EXACTFIT)
269         self.inc_v_button.SetToolTipString ("Increase vertical range")
270         wx.EVT_BUTTON (self, 1101, self.incr_v_scale) # ID matches button ID above
271
272         self.dec_v_button  = wx.Button (self, 1100, " > ", style=wx.BU_EXACTFIT)
273         self.dec_v_button.SetToolTipString ("Decrease vertical range")
274         wx.EVT_BUTTON (self, 1100, self.decr_v_scale)
275
276         self.v_scale_label = wx.StaticText (self, 1002, "None") # vertical /div
277         self.update_v_scale_label ()
278
279         self.autorange_checkbox = wx.CheckBox (self, 1102, "Autorange")
280         self.autorange_checkbox.SetToolTipString ("Select autorange on/off")
281         wx.EVT_CHECKBOX(self, 1102, self.autorange_checkbox_event)
282
283         ctrlbox.Add ((5,0) ,0) # left margin space
284         ctrlbox.Add (self.inc_v_button, 0, wx.EXPAND)
285         ctrlbox.Add (self.dec_v_button, 0, wx.EXPAND)
286         ctrlbox.Add (self.v_scale_label, 0, wx.ALIGN_CENTER)
287         ctrlbox.Add ((20,0) ,0) # spacer
288         ctrlbox.Add (self.autorange_checkbox, 0, wx.ALIGN_CENTER)
289
290         return ctrlbox
291
292     def make_control_box (self):
293         ctrlbox = wx.BoxSizer (wx.HORIZONTAL)
294
295         tb_left = wx.Button (self, 1001, " < ", style=wx.BU_EXACTFIT)
296         tb_left.SetToolTipString ("Increase time base")
297         wx.EVT_BUTTON (self, 1001, self.incr_timebase)
298
299
300         tb_right  = wx.Button (self, 1000, " > ", style=wx.BU_EXACTFIT)
301         tb_right.SetToolTipString ("Decrease time base")
302         wx.EVT_BUTTON (self, 1000, self.decr_timebase)
303
304         self.time_base_label = wx.StaticText (self, 1002, "")
305         self.update_timebase_label ()
306
307         ctrlbox.Add ((5,0) ,0)
308         # ctrlbox.Add (wx.StaticText (self, -1, "Horiz Scale: "), 0, wx.ALIGN_CENTER)
309         ctrlbox.Add (tb_left, 0, wx.EXPAND)
310         ctrlbox.Add (tb_right, 0, wx.EXPAND)
311         ctrlbox.Add (self.time_base_label, 0, wx.ALIGN_CENTER)
312
313         ctrlbox.Add ((10,0) ,1)            # stretchy space
314
315         ctrlbox.Add (wx.StaticText (self, -1, "Trig: "), 0, wx.ALIGN_CENTER)
316         self.trig_chan_choice = wx.Choice (self, 1004,
317                                            choices = ['Ch1', 'Ch2', 'Ch3', 'Ch4'])
318         self.trig_chan_choice.SetToolTipString ("Select channel for trigger")
319         wx.EVT_CHOICE (self, 1004, self.trig_chan_choice_event)
320         ctrlbox.Add (self.trig_chan_choice, 0, wx.ALIGN_CENTER)
321
322         self.trig_mode_choice = wx.Choice (self, 1005,
323                                            choices = ['Auto', 'Pos', 'Neg'])
324         self.trig_mode_choice.SetToolTipString ("Select trigger slope or Auto (untriggered roll)")
325         wx.EVT_CHOICE (self, 1005, self.trig_mode_choice_event)
326         ctrlbox.Add (self.trig_mode_choice, 0, wx.ALIGN_CENTER)
327
328         trig_level50 = wx.Button (self, 1006, "50%")
329         trig_level50.SetToolTipString ("Set trigger level to 50%")
330         wx.EVT_BUTTON (self, 1006, self.set_trig_level50)
331         ctrlbox.Add (trig_level50, 0, wx.EXPAND)
332
333         run_stop = wx.Button (self, 1007, "Run/Stop")
334         run_stop.SetToolTipString ("Toggle Run/Stop mode")
335         wx.EVT_BUTTON (self, 1007, self.run_stop)
336         ctrlbox.Add (run_stop, 0, wx.EXPAND)
337
338         ctrlbox.Add ((10, 0) ,1)            # stretchy space
339
340         ctrlbox.Add (wx.StaticText (self, -1, "Fmt: "), 0, wx.ALIGN_CENTER)
341         self.marker_choice = wx.Choice (self, 1002, choices = self._marker_choices)
342         self.marker_choice.SetToolTipString ("Select plotting with lines, pluses or dots")
343         wx.EVT_CHOICE (self, 1002, self.marker_choice_event)
344         ctrlbox.Add (self.marker_choice, 0, wx.ALIGN_CENTER)
345
346         self.xy_choice = wx.Choice (self, 1003, choices = ['X:t', 'X:Y'])
347         self.xy_choice.SetToolTipString ("Select X vs time or X vs Y display")
348         wx.EVT_CHOICE (self, 1003, self.xy_choice_event)
349         ctrlbox.Add (self.xy_choice, 0, wx.ALIGN_CENTER)
350
351         return ctrlbox
352     
353     _marker_choices = ['line', 'plus', 'dot']
354
355     def update_timebase_label (self):
356         time_per_div = self.info.get_time_per_div ()
357         s = ' ' + eng_notation.num_to_str (time_per_div) + 's/div'
358         self.time_base_label.SetLabel (s)
359         
360     def decr_timebase (self, evt):
361         self.info.time_scale_cursor.prev ()
362         self.update_timebase_label ()
363
364     def incr_timebase (self, evt):
365         self.info.time_scale_cursor.next ()
366         self.update_timebase_label ()
367
368     def update_v_scale_label (self):
369         volts_per_div = self.info.get_volts_per_div ()
370         s = ' ' + eng_notation.num_to_str (volts_per_div) + '/div' # Not V/div
371         self.v_scale_label.SetLabel (s)
372         
373     def decr_v_scale (self, evt):
374         self.info.v_scale_cursor.prev ()
375         self.update_v_scale_label ()
376
377     def incr_v_scale (self, evt):
378         self.info.v_scale_cursor.next ()
379         self.update_v_scale_label ()
380         
381     def marker_choice_event (self, evt):
382         s = evt.GetString ()
383         self.set_marker (s)
384
385     def set_autorange(self, on):
386         if on:
387             self.v_scale_label.SetLabel(" (auto)")
388             self.info.autorange = True
389             self.autorange_checkbox.SetValue(True)
390             self.inc_v_button.Enable(False)
391             self.dec_v_button.Enable(False)
392         else:
393             if self.graph.y_range:
394                 (l,u) = self.graph.y_range # found by autorange
395                 self.info.v_scale_cursor.set_index_by_value((u-l)/8.0)
396             self.update_v_scale_label()
397             self.info.autorange = False
398             self.autorange_checkbox.SetValue(False)
399             self.inc_v_button.Enable(True)
400             self.dec_v_button.Enable(True)
401             
402     def autorange_checkbox_event(self, evt):
403         if evt.Checked():
404             self.set_autorange(True)
405         else:
406             self.set_autorange(False)
407             
408     def set_marker (self, s):
409         self.info.set_marker (s)        # set info for drawing routines
410         i = self.marker_choice.FindString (s)
411         assert i >= 0, "Hmmm, set_marker problem"
412         self.marker_choice.SetSelection (i)
413
414     def set_format_line (self):
415         self.set_marker ('line')
416
417     def set_format_dot (self):
418         self.set_marker ('dot')
419
420     def set_format_plus (self):
421         self.set_marker ('plus')
422         
423     def xy_choice_event (self, evt):
424         s = evt.GetString ()
425         self.info.xy = s == 'X:Y'
426
427     def trig_chan_choice_event (self, evt):
428         s = evt.GetString ()
429         ch = int (s[-1]) - 1
430         self.info.scopesink.set_trigger_channel (ch)
431
432     def trig_mode_choice_event (self, evt):
433         sink = self.info.scopesink
434         s = evt.GetString ()
435         if s == 'Pos':
436             sink.set_trigger_mode (gr.gr_TRIG_POS_SLOPE)
437         elif s == 'Neg':
438             sink.set_trigger_mode (gr.gr_TRIG_NEG_SLOPE)
439         elif s == 'Auto':
440             sink.set_trigger_mode (gr.gr_TRIG_AUTO)
441         else:
442             assert 0, "Bad trig_mode_choice string"
443     
444     def set_trig_level50 (self, evt):
445         self.info.scopesink.set_trigger_level_auto ()
446
447     def run_stop (self, evt):
448         self.info.running = not self.info.running
449         
450
451 class graph_window (plot.PlotCanvas):
452
453     channel_colors = ['BLUE', 'RED',
454                       'CYAN', 'MAGENTA', 'GREEN', 'YELLOW']
455     
456     def __init__ (self, info, parent, id = -1,
457                   pos = wx.DefaultPosition, size = (640, 240),
458                   style = wx.DEFAULT_FRAME_STYLE, name = ""):
459         plot.PlotCanvas.__init__ (self, parent, id, pos, size, style, name)
460
461         self.SetXUseScopeTicks (True)
462         self.SetEnableGrid (True)
463         self.SetEnableZoom (True)
464         self.SetEnableLegend(True)
465         # self.SetBackgroundColour ('black')
466         
467         self.info = info;
468         self.y_range = None
469         self.x_range = None
470         self.avg_y_min = None
471         self.avg_y_max = None
472         self.avg_x_min = None
473         self.avg_x_max = None
474
475         EVT_DATA_EVENT (self, self.format_data)
476
477         self.input_watcher = input_watcher (info.msgq, self, info.frame_decim)
478
479     def channel_color (self, ch):
480         return self.channel_colors[ch % len(self.channel_colors)]
481        
482     def format_data (self, evt):
483         if not self.info.running:
484             return
485         
486         if self.info.xy:
487             self.format_xy_data (evt)
488             return
489
490         info = self.info
491         records = evt.data
492         nchannels = len (records)
493         npoints = len (records[0])
494
495         objects = []
496
497         Ts = 1.0 / (info.get_sample_rate () / info.get_decimation_rate ())
498         x_vals = Ts * numpy.arange (-npoints/2, npoints/2)
499
500         # preliminary clipping based on time axis here, instead of in graphics code
501         time_per_window = self.info.get_time_per_div () * 10
502         n = int (time_per_window / Ts + 0.5)
503         n = n & ~0x1                    # make even
504         n = max (2, min (n, npoints))
505
506         self.SetXUseScopeTicks (True)   # use 10 divisions, no labels
507
508         for ch in range(nchannels):
509             r = records[ch]
510
511             # plot middle n points of record
512
513             lb = npoints/2 - n/2
514             ub = npoints/2 + n/2
515             # points = zip (x_vals[lb:ub], r[lb:ub])
516             points = numpy.zeros ((ub-lb, 2), numpy.float64)
517             points[:,0] = x_vals[lb:ub]
518             points[:,1] = r[lb:ub]
519
520             m = info.get_marker ()
521             if m == 'line':
522                 objects.append (plot.PolyLine (points,
523                                                colour=self.channel_color (ch),
524                                                legend=('Ch%d' % (ch+1,))))
525             else:
526                 objects.append (plot.PolyMarker (points,
527                                                  marker=m,
528                                                  colour=self.channel_color (ch),
529                                                  legend=('Ch%d' % (ch+1,))))
530
531         graphics = plot.PlotGraphics (objects,
532                                       title=self.info.title,
533                                       xLabel = '', yLabel = '')
534
535         time_per_div = info.get_time_per_div ()
536         x_range = (-5.0 * time_per_div, 5.0 * time_per_div) # ranges are tuples!
537         volts_per_div = info.get_volts_per_div ()
538         if not self.info.autorange:
539             self.y_range = (-4.0 * volts_per_div, 4.0 * volts_per_div)
540         self.Draw (graphics, xAxis=x_range, yAxis=self.y_range)
541         self.update_y_range () # autorange to self.y_range
542
543
544     def format_xy_data (self, evt):
545         info = self.info
546         records = evt.data
547         nchannels = len (records)
548         npoints = len (records[0])
549
550         if nchannels < 2:
551             return
552
553         objects = []
554         # points = zip (records[0], records[1])
555         points = numpy.zeros ((len(records[0]), 2), numpy.float32)
556         points[:,0] = records[0]
557         points[:,1] = records[1]
558         
559         self.SetXUseScopeTicks (False)
560
561         m = info.get_marker ()
562         if m == 'line':
563             objects.append (plot.PolyLine (points,
564                                            colour=self.channel_color (0)))
565         else:
566             objects.append (plot.PolyMarker (points,
567                                              marker=m,
568                                              colour=self.channel_color (0)))
569
570         graphics = plot.PlotGraphics (objects,
571                                       title=self.info.title,
572                                       xLabel = 'I', yLabel = 'Q')
573
574         self.Draw (graphics, xAxis=self.x_range, yAxis=self.y_range)
575         self.update_y_range ()
576         self.update_x_range ()
577
578
579     def update_y_range (self):
580         alpha = 1.0/25
581         graphics = self.last_draw[0]
582         p1, p2 = graphics.boundingBox ()     # min, max points of graphics
583
584         if self.avg_y_min: # prevent vertical scale from jumping abruptly --?
585             self.avg_y_min = p1[1] * alpha + self.avg_y_min * (1 - alpha)
586             self.avg_y_max = p2[1] * alpha + self.avg_y_max * (1 - alpha)
587         else: # initial guess
588             self.avg_y_min = p1[1] # -500.0 workaround, sometimes p1 is ~ 10^35
589             self.avg_y_max = p2[1] # 500.0
590
591         self.y_range = self._axisInterval ('auto', self.avg_y_min, self.avg_y_max)
592         # print "p1 %s  p2 %s  y_min %s  y_max %s  y_range %s" \
593         #        % (p1, p2, self.avg_y_min, self.avg_y_max, self.y_range)
594
595
596     def update_x_range (self):
597         alpha = 1.0/25
598         graphics = self.last_draw[0]
599         p1, p2 = graphics.boundingBox ()     # min, max points of graphics
600
601         if self.avg_x_min:
602             self.avg_x_min = p1[0] * alpha + self.avg_x_min * (1 - alpha)
603             self.avg_x_max = p2[0] * alpha + self.avg_x_max * (1 - alpha)
604         else:
605             self.avg_x_min = p1[0]
606             self.avg_x_max = p2[0]
607
608         self.x_range = self._axisInterval ('auto', self.avg_x_min, self.avg_x_max)
609
610
611 # ----------------------------------------------------------------
612 # Stand-alone test application
613 # ----------------------------------------------------------------
614
615 class test_top_block (stdgui2.std_top_block):
616     def __init__(self, frame, panel, vbox, argv):
617         stdgui2.std_top_block.__init__ (self, frame, panel, vbox, argv)
618
619         if len(argv) > 1:
620             frame_decim = int(argv[1]) 
621         else:
622             frame_decim = 1
623
624         if len(argv) > 2:
625             v_scale = float(argv[2])  # start up at this v_scale value
626         else:
627             v_scale = None  # start up in autorange mode, default
628
629         if len(argv) > 3:
630             t_scale = float(argv[3])  # start up at this t_scale value
631         else:
632             t_scale = None  # old behavior
633
634         print "frame decim %s  v_scale %s  t_scale %s" % (frame_decim,v_scale,t_scale)
635             
636         input_rate = 1e6
637
638         # Generate a complex sinusoid
639         self.src0 = gr.sig_source_c (input_rate, gr.GR_SIN_WAVE, 25.1e3, 1e3)
640
641         # We add this throttle block so that this demo doesn't suck down
642         # all the CPU available.  You normally wouldn't use it...
643         self.thr = gr.throttle(gr.sizeof_gr_complex, input_rate)
644
645         scope = scope_sink_c (panel,"Secret Data",sample_rate=input_rate,
646                               frame_decim=frame_decim,
647                               v_scale=v_scale, t_scale=t_scale)
648         vbox.Add (scope.win, 1, wx.EXPAND)
649
650         # Ultimately this will be
651         # self.connect("src0 throttle scope")
652         self.connect(self.src0, self.thr, scope) 
653
654 def main ():
655     app = stdgui2.stdapp (test_top_block, "O'Scope Test App")
656     app.MainLoop ()
657
658 if __name__ == '__main__':
659     main ()
660
661 # ----------------------------------------------------------------