📄 gr_sig_source_i.cc
字号:
/* -*- c++ -*- *//* * Copyright 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. */// WARNING: this file is machine generated. Edits will be over written#include <gr_sig_source_i.h>#include <algorithm>#include <gr_io_signature.h>#include <stdexcept>#include <gr_complex.h>gr_sig_source_i::gr_sig_source_i (double sampling_freq, gr_waveform_t waveform, double frequency, double ampl, int offset) : gr_sync_block ("sig_source_i", gr_make_io_signature (0, 0, 0), gr_make_io_signature (1, 1, sizeof (int))), d_sampling_freq (sampling_freq), d_waveform (waveform), d_frequency (frequency), d_ampl (ampl), d_offset (offset){ d_nco.set_freq (2 * M_PI * d_frequency / d_sampling_freq);}gr_sig_source_i_sptrgr_make_sig_source_i (double sampling_freq, gr_waveform_t waveform, double frequency, double ampl, int offset){ return gr_sig_source_i_sptr (new gr_sig_source_i (sampling_freq, waveform, frequency, ampl, offset));}intgr_sig_source_i::work (int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items){ int *optr = (int *) output_items[0]; int t; switch (d_waveform){#if 0 // complex? case GR_CONST_WAVE: t = (gr_complex) d_ampl + d_offset; for (int i = 0; i < noutput_items; i++) // FIXME unroll optr[i] = t; break; case GR_SIN_WAVE: case GR_COS_WAVE: for (int i = 0; i < noutput_items; i++){ float sinx, cosx; d_nco.sincos (&sinx, &cosx); optr[i] = gr_complex (cosx * d_ampl, sinx * d_ampl) + d_offset; d_nco.step (); } break;#else // nope... case GR_CONST_WAVE: t = (int) d_ampl + d_offset; for (int i = 0; i < noutput_items; i++) // FIXME unroll optr[i] = t; break; case GR_SIN_WAVE: for (int i = 0; i < noutput_items; i++){ optr[i] = (int)(d_nco.sin () * d_ampl) + d_offset; d_nco.step (); } break; case GR_COS_WAVE: for (int i = 0; i < noutput_items; i++){ optr[i] = (int)(d_nco.cos () * d_ampl) + d_offset; d_nco.step (); } break;#endif default: throw std::runtime_error ("gr_sig_source: invalid waveform"); } return noutput_items;}voidgr_sig_source_i::set_sampling_freq (double sampling_freq){ d_sampling_freq = sampling_freq; d_nco.set_freq (2 * M_PI * d_frequency / d_sampling_freq);}voidgr_sig_source_i::set_waveform (gr_waveform_t waveform){ d_waveform = waveform;}voidgr_sig_source_i::set_frequency (double frequency){ d_frequency = frequency; d_nco.set_freq (2 * M_PI * d_frequency / d_sampling_freq);}voidgr_sig_source_i::set_amplitude (double ampl){ d_ampl = ampl;}voidgr_sig_source_i::set_offset (int offset){ d_offset = offset;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -