~ubuntu-branches/ubuntu/precise/gnuradio/precise

« back to all changes in this revision

Viewing changes to gnuradio-core/src/lib/io/gr_oscope_sink_x.h

  • Committer: Bazaar Package Importer
  • Author(s): Kamal Mostafa
  • Date: 2010-03-13 07:46:01 UTC
  • mfrom: (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100313074601-zjsa893a87bozyh7
Tags: 3.2.2.dfsg-1ubuntu1
* Fix build for Ubuntu lucid (LP: #260406)
  - add binary package dep for libusrp0, libusrp2-0: adduser
  - debian/rules clean: remove pre-built Qt moc files

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
/*!
32
32
 * \brief Abstract class for python oscilloscope module.
33
 
 * \ingroup sink
 
33
 * \ingroup sink_blk
34
34
 *
35
35
 * Don't instantiate this.  Use gr_oscope_sink_f or gr_oscope_sink_c instead.
36
36
 */
51
51
  bool set_decimation_count (int decimation_count);
52
52
  bool set_trigger_channel (int channel);
53
53
  bool set_trigger_mode (gr_trigger_mode mode);
 
54
  bool set_trigger_slope (gr_trigger_slope slope);
54
55
  bool set_trigger_level (double trigger_level);
55
56
  bool set_trigger_level_auto ();                               // set to 50% level
56
57
  bool set_sample_rate(double sample_rate);
 
58
  bool set_num_channels (int nchannels);
57
59
 
58
60
 
59
61
  // ACCESSORS
63
65
  int get_decimation_count () const;
64
66
  int get_trigger_channel () const;
65
67
  gr_trigger_mode get_trigger_mode () const;
 
68
  gr_trigger_slope get_trigger_slope () const;
66
69
  double get_trigger_level () const;
67
70
 
68
71
  // # of samples written to each output record.