2017-10-05 00:38:45 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
|
|
|
|
* Copyright (C) 2017 Furrtek
|
|
|
|
*
|
|
|
|
* 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 "proc_sonde.hpp"
|
|
|
|
|
|
|
|
#include "dsp_fir_taps.hpp"
|
|
|
|
|
|
|
|
#include "event_m4.hpp"
|
|
|
|
|
2021-06-08 18:07:37 -04:00
|
|
|
#include "audio_output.hpp"
|
|
|
|
|
2017-10-05 00:38:45 -04:00
|
|
|
SondeProcessor::SondeProcessor() {
|
2021-06-08 18:07:37 -04:00
|
|
|
|
2017-10-06 00:35:25 -04:00
|
|
|
decim_0.configure(taps_11k0_decim_0.taps, 33554432);
|
|
|
|
decim_1.configure(taps_11k0_decim_1.taps, 131072);
|
2021-06-08 18:07:37 -04:00
|
|
|
|
|
|
|
audio_output.configure(false);
|
2017-10-05 00:38:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void SondeProcessor::execute(const buffer_c8_t& buffer) {
|
|
|
|
/* 2.4576MHz, 2048 samples */
|
|
|
|
|
|
|
|
const auto decim_0_out = decim_0.execute(buffer, dst_buffer);
|
2017-10-06 00:35:25 -04:00
|
|
|
const auto decim_1_out = decim_1.execute(decim_0_out, dst_buffer);
|
|
|
|
const auto decimator_out = decim_1_out;
|
2017-10-05 00:38:45 -04:00
|
|
|
|
2017-10-06 00:35:25 -04:00
|
|
|
/* 38.4kHz, 32 samples */
|
2017-10-05 00:38:45 -04:00
|
|
|
feed_channel_stats(decimator_out);
|
|
|
|
|
2017-11-09 21:20:44 -05:00
|
|
|
for (size_t i=0; i<decimator_out.count; i++) {
|
2017-10-06 00:35:25 -04:00
|
|
|
if( mf.execute_once(decimator_out.p[i]) ) {
|
2017-11-09 21:20:44 -05:00
|
|
|
clock_recovery_fsk_9600(mf.get_output());
|
2017-10-06 00:35:25 -04:00
|
|
|
clock_recovery_fsk_4800(mf.get_output());
|
2017-10-05 00:38:45 -04:00
|
|
|
}
|
|
|
|
}
|
2021-06-08 18:07:37 -04:00
|
|
|
|
|
|
|
if(pitch_rssi_enabled) {
|
|
|
|
if(beep_playing) {
|
|
|
|
beep_loop();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
silence_loop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SondeProcessor::on_message(const Message* const msg) {
|
|
|
|
switch(msg->id) {
|
|
|
|
case Message::ID::RequestSignal:
|
|
|
|
if ((*reinterpret_cast<const RequestSignalMessage*>(msg)).signal == RequestSignalMessage::Signal::BeepRequest) {
|
|
|
|
play_beep();
|
|
|
|
chThdSleepMilliseconds(100);
|
|
|
|
stop_beep();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Message::ID::PitchRSSIConfigure:
|
|
|
|
pitch_rssi_config(*reinterpret_cast<const PitchRSSIConfigureMessage*>(msg));
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SondeProcessor::play_beep() {
|
|
|
|
beep_playing = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SondeProcessor::stop_beep() {
|
|
|
|
beep_playing = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SondeProcessor::beep_loop() {
|
|
|
|
for (size_t i = 0; i < sizeof(audio_buffer.p); i++) {
|
|
|
|
audio_buffer.p[i] = (sine_table_i8[(tone_phase & 0xFF000000U) >> 24]) * 128;
|
|
|
|
tone_phase += tone_delta;
|
|
|
|
}
|
|
|
|
|
|
|
|
audio_output.write(audio_buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SondeProcessor::silence_loop() {
|
|
|
|
for (size_t i = 0; i < sizeof(audio_buffer.p); i++) {
|
|
|
|
audio_buffer.p[i] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
audio_output.write(audio_buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SondeProcessor::pitch_rssi_config(const PitchRSSIConfigureMessage& message) {
|
|
|
|
// rtc::RTC datetime;
|
|
|
|
// rtcGetTime(&RTCD1, &datetime);
|
|
|
|
|
|
|
|
// log_file.write_entry(datetime, "pitch_rssi_config: message.rssi: " + message.rssi);
|
|
|
|
|
|
|
|
pitch_rssi_enabled = message.enabled;
|
2021-06-09 04:10:01 -04:00
|
|
|
tone_delta = (message.rssi + 1000) * ((1ULL << 32) / 24000);
|
2021-06-08 18:07:37 -04:00
|
|
|
|
|
|
|
// log_file.write_entry(datetime, "pitch_rssi_config: tone_delta: " + tone_delta);
|
2017-10-05 00:38:45 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
EventDispatcher event_dispatcher { std::make_unique<SondeProcessor>() };
|
|
|
|
event_dispatcher.run();
|
2021-06-08 18:07:37 -04:00
|
|
|
|
2017-10-05 00:38:45 -04:00
|
|
|
return 0;
|
|
|
|
}
|