📄 gr_oscope_guts.h
字号:
/* -*- c++ -*- *//* * Copyright 2003 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. */#ifndef INCLUDED_GR_OSCOPE_GUTS_H#define INCLUDED_GR_OSCOPE_GUTS_H#include <gr_trigger_mode.h>/*! * \brief guts of oscilloscope trigger and buffer module * * This module processes sets of samples provided the \p process_sample * method. When appropriate given the updateRate, sampleRate and * trigger conditions, process_sample will periodically write output * records of captured data to output_fd. For each trigger event, * nchannels records will be written. Each record consists of * get_samples_per_output_record binary floats. The trigger instant * occurs at the 1/2 way point in the buffer. Thus, output records * consist of 50% pre-trigger data and 50% post-trigger data. */class gr_oscope_guts {private: static const int MAX_CHANNELS = 16; enum scope_state { HOLD_OFF, LOOK_FOR_TRIGGER, POST_TRIGGER }; int d_nchannels; // how many channels int d_output_fd; // file desc used to write output records gr_trigger_mode d_trigger_mode; int d_trigger_channel; // which channel to watch for trigger condition double d_sample_rate; // input sample rate in Hz double d_update_rate; // approx freq to produce an output record (Hz) double d_trigger_level; int d_obi; // output buffer index float *d_buffer[MAX_CHANNELS]; scope_state d_state; int d_decimator_count; int d_decimator_count_init; int d_hold_off_count; int d_hold_off_count_init; int d_post_trigger_count; int d_post_trigger_count_init; float d_prev_sample; // used for trigger checking // NOT IMPLEMENTED gr_oscope_guts (const gr_oscope_guts &rhs); // no copy constructor gr_oscope_guts &operator= (const gr_oscope_guts &rhs); // no assignment operator void trigger_changed (); void update_rate_or_decimation_changed (); int found_trigger (float sample); // returns -1, 0, +1 void write_output_records (); void enter_hold_off (); // called on state entry void enter_look_for_trigger (); void enter_post_trigger ();public: // CREATORS gr_oscope_guts (int nchannels, double sample_rate, int output_fd); ~gr_oscope_guts (); // MANIPULATORS /*! * \p channel_data points to nchannels float values. These are the values * for each channel at this sample time. */ void process_sample (const float *channel_data); bool set_update_rate (double update_rate); bool set_decimation_count (int decimation_count); bool set_trigger_channel (int channel); bool set_trigger_mode (gr_trigger_mode mode); bool set_trigger_level (double trigger_level); bool set_trigger_level_auto (); // set to 50% level // ACCESSORS int num_channels () const; double sampling_rate () const; double update_rate () const; int get_decimation_count () const; int get_trigger_channel () const; gr_trigger_mode get_trigger_mode () const; double get_trigger_level () const; // # of samples written to each output record. int get_samples_per_output_record () const;};#endif /* INCLUDED_GR_OSCOPE_GUTS_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -