📄 gr_fxpt_nco.h
字号:
/* -*- c++ -*- *//* * Copyright 2002,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. */#ifndef INCLUDED_GR_FXPT_NCO_H#define INCLUDED_GR_FXPT_NCO_H#include <gr_fxpt.h>/*! * \brief Numerically Controlled Oscillator (NCO) */class gr_fxpt_nco { gr_int32 d_phase; gr_int32 d_phase_inc;public: gr_fxpt_nco () : d_phase (0), d_phase_inc (0) {} ~gr_fxpt_nco () {} // radians void set_phase (float angle) { d_phase = gr_fxpt::float_to_fixed (angle); } void adjust_phase (float delta_phase) { d_phase += gr_fxpt::float_to_fixed (delta_phase); } // angle_rate is in radians / step void set_freq (float angle_rate){ d_phase_inc = gr_fxpt::float_to_fixed (angle_rate); } // angle_rate is a delta in radians / step void adjust_freq (float delta_angle_rate) { d_phase_inc += gr_fxpt::float_to_fixed (delta_angle_rate); } // increment current phase angle void step () { d_phase += d_phase_inc; } void step (int n) { d_phase += d_phase_inc * n; } // units are radians / step float get_phase () const { return gr_fxpt::fixed_to_float (d_phase); } float get_freq () const { return gr_fxpt::fixed_to_float (d_phase_inc); } // compute sin and cos for current phase angle void sincos (float *sinx, float *cosx) const { *sinx = gr_fxpt::sin (d_phase); *cosx = gr_fxpt::cos (d_phase); } // compute cos or sin for current phase angle float cos () const { return gr_fxpt::cos (d_phase); } float sin () const { return gr_fxpt::sin (d_phase); }};#endif /* INCLUDED_GR_FXPT_NCO_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -