/* * Copyright (C) 2014 Jared Boone, ShareBrained Technology, Inc. * * This file is part of PortaPack. * * This program 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. * * This program 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 this program; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, * Boston, MA 02110-1301, USA. */ #include "baseband_processor.hpp" #include "portapack_shared_memory.hpp" #include "dsp_fft.hpp" #include "audio_dma.hpp" #include "message.hpp" #include "event_m4.hpp" #include "utility.hpp" #include #include void BasebandProcessor::update_spectrum() { // Called from idle thread (after EVT_MASK_SPECTRUM is flagged) if( channel_spectrum_request_update ) { /* Decimated buffer is full. Compute spectrum. */ channel_spectrum_request_update = false; fft_c_preswapped(channel_spectrum); ChannelSpectrumMessage spectrum_message; for(size_t i=0; i .magnitude, or something more (less!) accurate. */ spectrum_message.spectrum.db_count = spectrum_message.spectrum.db.size(); spectrum_message.spectrum.sampling_rate = channel_spectrum_sampling_rate; spectrum_message.spectrum.channel_filter_pass_frequency = channel_filter_pass_frequency; spectrum_message.spectrum.channel_filter_stop_frequency = channel_filter_stop_frequency; shared_memory.application_queue.push(spectrum_message); } } void BasebandProcessor::feed_channel_stats(const buffer_c16_t& channel) { channel_stats.feed( channel, [](const ChannelStatistics& statistics) { const ChannelStatisticsMessage channel_stats_message { statistics }; shared_memory.application_queue.push(channel_stats_message); } ); } void BasebandProcessor::feed_channel_spectrum( const buffer_c16_t& channel, const uint32_t filter_pass_frequency, const uint32_t filter_stop_frequency ) { channel_filter_pass_frequency = filter_pass_frequency; channel_filter_stop_frequency = filter_stop_frequency; channel_spectrum_decimator.feed( channel, [this](const buffer_c16_t& data) { this->post_channel_spectrum_message(data); } ); } void BasebandProcessor::fill_audio_buffer(const buffer_s16_t& audio) { auto audio_buffer = audio::dma::tx_empty_buffer();; for(size_t i=0; i