2016-09-23 11:34:50 -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_dtmf_tx.hpp"
|
|
|
|
#include "portapack_shared_memory.hpp"
|
|
|
|
#include "sine_table_int8.hpp"
|
|
|
|
//#include "audio_output.hpp"
|
|
|
|
#include "event_m4.hpp"
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
void DTMFTXProcessor::execute(const buffer_c8_t& buffer){
|
|
|
|
|
|
|
|
// This is called at 1536000/2048 = 750Hz
|
|
|
|
// DTMF samplerate = 153600Hz
|
|
|
|
|
|
|
|
if (!configured) return;
|
|
|
|
|
|
|
|
for (size_t i = 0; i<buffer.count; i++) {
|
|
|
|
|
|
|
|
if (!as) {
|
|
|
|
as = 10;
|
|
|
|
|
|
|
|
if (!timer) {
|
|
|
|
if (tone) {
|
|
|
|
tone = false;
|
2016-09-23 14:17:29 -04:00
|
|
|
timer = pause_length;
|
2016-09-23 11:34:50 -04:00
|
|
|
} else {
|
|
|
|
tone = true;
|
2016-09-23 14:17:29 -04:00
|
|
|
timer = tone_length;
|
|
|
|
|
|
|
|
tone_code = shared_memory.tx_data[tone_idx];
|
|
|
|
|
2016-09-23 11:34:50 -04:00
|
|
|
if (tone_code == 0xFF) {
|
2016-09-23 14:17:29 -04:00
|
|
|
txdone_message.n = 0xFF; // End of list
|
2016-09-23 11:34:50 -04:00
|
|
|
shared_memory.application_queue.push(txdone_message);
|
|
|
|
configured = false;
|
|
|
|
tone = false;
|
|
|
|
} else {
|
2016-09-23 14:17:29 -04:00
|
|
|
txdone_message.n = tone_idx; // New tone (progress)
|
2016-09-23 11:34:50 -04:00
|
|
|
shared_memory.application_queue.push(txdone_message);
|
|
|
|
tone_idx++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
timer--;
|
|
|
|
|
|
|
|
if (tone) {
|
|
|
|
sample = sine_table_i8[(tone_a_phase & 0x03FC0000) >> 18] >> 1;
|
|
|
|
sample += sine_table_i8[(tone_b_phase & 0x03FC0000) >> 18] >> 1;
|
|
|
|
|
|
|
|
tone_a_phase += DTMF_LUT[tone_code][0];
|
|
|
|
tone_b_phase += DTMF_LUT[tone_code][1];
|
|
|
|
} else {
|
|
|
|
sample = 0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
as--;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FM
|
|
|
|
frq = sample * bw;
|
|
|
|
|
|
|
|
phase = (phase + frq);
|
|
|
|
sphase = phase + (64 << 18);
|
|
|
|
|
|
|
|
re = (sine_table_i8[(sphase & 0x03FC0000) >> 18]);
|
|
|
|
im = (sine_table_i8[(phase & 0x03FC0000) >> 18]);
|
|
|
|
|
|
|
|
buffer.p[i] = {(int8_t)re, (int8_t)im};
|
|
|
|
}
|
|
|
|
|
|
|
|
//AudioOutput::fill_audio_buffer(preview_audio_buffer, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DTMFTXProcessor::on_message(const Message* const msg) {
|
2016-09-23 14:17:29 -04:00
|
|
|
char * tone_ptr;
|
2016-09-23 11:34:50 -04:00
|
|
|
const auto message = *reinterpret_cast<const DTMFTXConfigMessage*>(msg);
|
|
|
|
|
|
|
|
if (message.id == Message::ID::DTMFTXConfig) {
|
2016-09-23 14:17:29 -04:00
|
|
|
|
|
|
|
// Translate DTMF message to index in DTMF frequencies table
|
|
|
|
tone_ptr = &shared_memory.tx_data[0];
|
|
|
|
for (;;) {
|
|
|
|
tone_code = *tone_ptr;
|
|
|
|
if (tone_code == 0xFF)
|
|
|
|
break; // End of message
|
|
|
|
else if (tone_code <= 9)
|
|
|
|
// That's already fine bro.
|
|
|
|
*tone_ptr = tone_code;
|
|
|
|
else if (tone_code == 'A')
|
|
|
|
*tone_ptr = 10;
|
|
|
|
else if (tone_code == 'B')
|
|
|
|
*tone_ptr = 11;
|
|
|
|
else if (tone_code == 'C')
|
|
|
|
*tone_ptr = 12;
|
|
|
|
else if (tone_code == 'D')
|
|
|
|
*tone_ptr = 13;
|
|
|
|
else if (tone_code == '#')
|
|
|
|
*tone_ptr = 14;
|
|
|
|
else if (tone_code == '*')
|
|
|
|
*tone_ptr = 15;
|
|
|
|
else {
|
|
|
|
*tone_ptr = 0xFF; // Invalid character, stop here
|
|
|
|
}
|
|
|
|
tone_ptr++;
|
|
|
|
}
|
|
|
|
|
2016-09-23 11:34:50 -04:00
|
|
|
// 1<<18 = 262144
|
|
|
|
// m = (262144 * a) / 1536000
|
|
|
|
// a = 262144 / 1536000 (*1000 = 171)
|
|
|
|
bw = 171 * (message.bw);
|
2016-09-23 14:17:29 -04:00
|
|
|
tone_length = message.tone_length * 154; // 153.6
|
|
|
|
pause_length = message.pause_length * 154; // 153.6
|
2016-09-23 11:34:50 -04:00
|
|
|
as = 0;
|
|
|
|
tone = false;
|
|
|
|
timer = 0;
|
|
|
|
tone_idx = 0;
|
|
|
|
|
|
|
|
configured = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
EventDispatcher event_dispatcher { std::make_unique<DTMFTXProcessor>() };
|
|
|
|
event_dispatcher.run();
|
|
|
|
return 0;
|
|
|
|
}
|