📄 gr_oscope_sink_x.cc
字号:
/* -*- c++ -*- *//* * Copyright 2003,2004 Free Software Foundation, Inc. * * This file is part of GNU Radio * * GNU Radio is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * GNU Radio is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with GNU Radio; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */#ifdef HAVE_CONFIG_H#include "config.h"#endif#include <gr_oscope_sink_x.h>#include <gr_io_signature.h>#include <gr_oscope_guts.h>gr_oscope_sink_x::gr_oscope_sink_x (const std::string name, gr_io_signature_sptr input_sig, double sampling_rate) : gr_sync_block (name, input_sig, gr_make_io_signature (0, 0, 0)), d_sampling_rate (sampling_rate), d_guts (0){}gr_oscope_sink_x::~gr_oscope_sink_x (){ delete d_guts;}// ----------------------------------------------------------------boolgr_oscope_sink_x::set_update_rate (double update_rate){ return d_guts->set_update_rate (update_rate);}boolgr_oscope_sink_x::set_decimation_count (int decimation_count){ return d_guts->set_decimation_count (decimation_count);}boolgr_oscope_sink_x::set_trigger_channel (int channel){ return d_guts->set_trigger_channel (channel);}boolgr_oscope_sink_x::set_trigger_mode (gr_trigger_mode mode){ return d_guts->set_trigger_mode (mode);}boolgr_oscope_sink_x::set_trigger_level (double trigger_level){ return d_guts->set_trigger_level (trigger_level);}boolgr_oscope_sink_x::set_trigger_level_auto (){ return d_guts->set_trigger_level_auto ();}// ACCESSORSintgr_oscope_sink_x::num_channels () const{ return d_guts->num_channels ();}doublegr_oscope_sink_x::sampling_rate () const{ return d_guts->sampling_rate ();}doublegr_oscope_sink_x::update_rate () const{ return d_guts->update_rate ();}intgr_oscope_sink_x::get_decimation_count () const{ return d_guts->get_decimation_count ();}intgr_oscope_sink_x::get_trigger_channel () const{ return d_guts->get_trigger_channel ();}gr_trigger_modegr_oscope_sink_x::get_trigger_mode () const{ return d_guts->get_trigger_mode ();}doublegr_oscope_sink_x::get_trigger_level () const{ return d_guts->get_trigger_level ();}intgr_oscope_sink_x::get_samples_per_output_record () const{ return d_guts->get_samples_per_output_record ();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -