2017-03-12 03:10:51 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
|
|
|
|
* Copyright (C) 2016 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_mictx.hpp"
|
|
|
|
#include "portapack_shared_memory.hpp"
|
|
|
|
#include "sine_table_int8.hpp"
|
2018-02-01 06:17:51 -05:00
|
|
|
#include "tonesets.hpp"
|
2017-03-12 03:10:51 -04:00
|
|
|
#include "event_m4.hpp"
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
void MicTXProcessor::execute(const buffer_c8_t& buffer){
|
|
|
|
|
|
|
|
// This is called at 1536000/2048 = 750Hz
|
|
|
|
|
|
|
|
if (!configured) return;
|
|
|
|
|
|
|
|
audio_input.read_audio_buffer(audio_buffer);
|
|
|
|
|
2017-11-09 15:02:34 -05:00
|
|
|
for (size_t i = 0; i < buffer.count; i++) {
|
2017-03-12 03:10:51 -04:00
|
|
|
|
2017-03-14 04:20:13 -04:00
|
|
|
if (!play_beep) {
|
2017-11-09 19:25:04 -05:00
|
|
|
sample = audio_buffer.p[i >> 6] >> 8; // 1536000 / 64 = 24000
|
2018-02-01 06:17:51 -05:00
|
|
|
sample *= audio_gain;
|
2017-03-14 04:20:13 -04:00
|
|
|
|
2017-11-09 19:25:04 -05:00
|
|
|
power_acc += (sample < 0) ? -sample : sample; // Power average for UI vu-meter
|
2017-03-14 04:20:13 -04:00
|
|
|
|
2017-11-09 19:25:04 -05:00
|
|
|
if (power_acc_count) {
|
|
|
|
power_acc_count--;
|
2017-03-14 04:20:13 -04:00
|
|
|
} else {
|
2017-11-09 19:25:04 -05:00
|
|
|
power_acc_count = divider;
|
|
|
|
level_message.value = power_acc / (divider / 4); // Why ?
|
|
|
|
shared_memory.application_queue.push(level_message);
|
|
|
|
power_acc = 0;
|
2017-03-14 04:20:13 -04:00
|
|
|
}
|
2017-03-12 03:10:51 -04:00
|
|
|
} else {
|
2017-03-14 04:20:13 -04:00
|
|
|
if (beep_timer) {
|
|
|
|
beep_timer--;
|
|
|
|
} else {
|
2017-11-09 19:25:04 -05:00
|
|
|
beep_timer = baseband_fs * 0.05; // 50ms
|
|
|
|
|
2017-03-14 04:20:13 -04:00
|
|
|
if (beep_index == BEEP_TONES_NB) {
|
|
|
|
configured = false;
|
2017-09-24 15:05:42 -04:00
|
|
|
shared_memory.application_queue.push(txprogress_message);
|
2017-03-14 04:20:13 -04:00
|
|
|
} else {
|
2017-11-09 19:25:04 -05:00
|
|
|
beep_gen.configure(beep_deltas[beep_index], 1.0);
|
2017-03-14 04:20:13 -04:00
|
|
|
beep_index++;
|
|
|
|
}
|
|
|
|
}
|
2017-11-09 19:25:04 -05:00
|
|
|
|
|
|
|
sample = beep_gen.process(0);
|
2017-03-12 03:10:51 -04:00
|
|
|
}
|
|
|
|
|
2017-11-09 19:25:04 -05:00
|
|
|
sample = tone_gen.process(sample);
|
2017-03-12 03:10:51 -04:00
|
|
|
|
|
|
|
// FM
|
2018-02-01 06:17:51 -05:00
|
|
|
if (configured) {
|
2017-11-09 19:25:04 -05:00
|
|
|
delta = sample * fm_delta;
|
2017-03-13 00:09:21 -04:00
|
|
|
|
|
|
|
phase += delta;
|
2018-02-01 06:17:51 -05:00
|
|
|
sphase = phase >> 24;
|
2017-03-12 03:10:51 -04:00
|
|
|
|
2018-02-01 06:17:51 -05:00
|
|
|
re = (sine_table_i8[(sphase + 64) & 255]);
|
|
|
|
im = (sine_table_i8[sphase]);
|
2017-03-13 00:09:21 -04:00
|
|
|
} else {
|
|
|
|
re = 0;
|
|
|
|
im = 0;
|
|
|
|
}
|
2017-03-12 03:10:51 -04:00
|
|
|
|
2018-02-01 06:17:51 -05:00
|
|
|
buffer.p[i] = { re, im };
|
2017-03-12 03:10:51 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void MicTXProcessor::on_message(const Message* const msg) {
|
2017-03-14 03:24:04 -04:00
|
|
|
const AudioTXConfigMessage config_message = *reinterpret_cast<const AudioTXConfigMessage*>(msg);
|
|
|
|
const RequestSignalMessage request_message = *reinterpret_cast<const RequestSignalMessage*>(msg);
|
2017-03-12 03:10:51 -04:00
|
|
|
|
|
|
|
switch(msg->id) {
|
|
|
|
case Message::ID::AudioTXConfig:
|
2018-02-01 06:17:51 -05:00
|
|
|
fm_delta = config_message.deviation_hz * (0xFFFFFFUL / baseband_fs);
|
|
|
|
|
|
|
|
audio_gain = config_message.audio_gain;
|
2017-03-14 03:24:04 -04:00
|
|
|
divider = config_message.divider;
|
2017-11-09 19:25:04 -05:00
|
|
|
power_acc_count = 0;
|
|
|
|
|
|
|
|
tone_gen.configure(config_message.tone_key_delta, config_message.tone_key_mix_weight);
|
2017-03-14 04:20:13 -04:00
|
|
|
|
2017-09-24 15:05:42 -04:00
|
|
|
txprogress_message.done = true;
|
2017-03-12 03:10:51 -04:00
|
|
|
|
2017-03-14 04:20:13 -04:00
|
|
|
play_beep = false;
|
2017-03-12 03:10:51 -04:00
|
|
|
configured = true;
|
|
|
|
break;
|
2017-03-14 03:24:04 -04:00
|
|
|
|
|
|
|
case Message::ID::RequestSignal:
|
|
|
|
if (request_message.signal == RequestSignalMessage::Signal::BeepRequest) {
|
2017-03-14 04:20:13 -04:00
|
|
|
beep_index = 0;
|
|
|
|
beep_timer = 0;
|
|
|
|
play_beep = true;
|
2017-03-14 03:24:04 -04:00
|
|
|
}
|
|
|
|
break;
|
2017-03-12 03:10:51 -04:00
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
EventDispatcher event_dispatcher { std::make_unique<MicTXProcessor>() };
|
|
|
|
event_dispatcher.run();
|
|
|
|
return 0;
|
|
|
|
}
|