2015-11-20 01:59:09 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Jared Boone, ShareBrained Technology, Inc.
|
2016-12-01 00:58:47 -05:00
|
|
|
* Copyright (C) 2016 Furrtek
|
2015-11-20 01:59:09 -05:00
|
|
|
*
|
|
|
|
* 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_jammer.hpp"
|
|
|
|
#include "portapack_shared_memory.hpp"
|
2016-12-01 00:58:47 -05:00
|
|
|
#include "sine_table_int8.hpp"
|
2016-07-26 21:03:40 -04:00
|
|
|
#include "event_m4.hpp"
|
2015-11-20 01:59:09 -05:00
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
#define POLY_MASK_32 0xB4BCD35C
|
|
|
|
|
2016-02-04 04:27:53 -05:00
|
|
|
void JammerProcessor::execute(const buffer_c8_t& buffer) {
|
2016-12-01 00:58:47 -05:00
|
|
|
|
|
|
|
if (!configured) return;
|
|
|
|
|
2015-11-20 01:59:09 -05:00
|
|
|
for (size_t i = 0; i<buffer.count; i++) {
|
|
|
|
|
2016-07-25 10:21:27 -04:00
|
|
|
if (s >= 10000) { //shared_memory.jammer_ranges[ir].duration
|
2015-11-20 01:59:09 -05:00
|
|
|
s = 0;
|
|
|
|
for (;;) {
|
|
|
|
ir++;
|
|
|
|
if (ir > 15) ir = 0;
|
2016-12-05 06:56:41 -05:00
|
|
|
if (jammer_ranges[ir].enabled == true) break;
|
2015-11-20 01:59:09 -05:00
|
|
|
}
|
2016-12-05 06:56:41 -05:00
|
|
|
jammer_bw = jammer_ranges[ir].width / 2;
|
2015-11-20 01:59:09 -05:00
|
|
|
|
2016-12-05 06:56:41 -05:00
|
|
|
message.freq = jammer_ranges[ir].center;
|
2015-11-20 01:59:09 -05:00
|
|
|
shared_memory.application_queue.push(message);
|
|
|
|
} else {
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ramp
|
|
|
|
/*if (r >= 10) {
|
|
|
|
if (sample < 128)
|
|
|
|
sample++;
|
|
|
|
else
|
|
|
|
sample = -127;
|
|
|
|
r = 0;
|
|
|
|
} else {
|
|
|
|
r++;
|
|
|
|
}*/
|
|
|
|
|
|
|
|
// Phase
|
|
|
|
if (r >= 70) {
|
|
|
|
aphase += ((aphase>>4) ^ 0x4573) << 14;
|
|
|
|
r = 0;
|
|
|
|
} else {
|
|
|
|
r++;
|
|
|
|
}
|
|
|
|
|
|
|
|
aphase += 8830;
|
2016-12-01 00:58:47 -05:00
|
|
|
sample = sine_table_i8[(sphase & 0x03FC0000) >> 18];
|
2015-11-20 01:59:09 -05:00
|
|
|
|
2016-12-01 00:58:47 -05:00
|
|
|
// FM
|
2016-12-05 06:56:41 -05:00
|
|
|
delta = sample * jammer_bw;
|
2015-11-20 01:59:09 -05:00
|
|
|
|
2016-12-05 06:56:41 -05:00
|
|
|
phase = (phase + delta);
|
2016-12-01 00:58:47 -05:00
|
|
|
sphase = phase + (64 << 18);
|
2015-11-20 01:59:09 -05:00
|
|
|
|
2016-12-01 00:58:47 -05:00
|
|
|
re = (sine_table_i8[(sphase & 0x03FC0000) >> 18]);
|
|
|
|
im = (sine_table_i8[(phase & 0x03FC0000) >> 18]);
|
2015-11-20 01:59:09 -05:00
|
|
|
|
2016-12-01 00:58:47 -05:00
|
|
|
buffer.p[i] = {(int8_t)re, (int8_t)im};
|
2015-11-20 01:59:09 -05:00
|
|
|
}
|
|
|
|
};
|
2016-07-26 21:03:40 -04:00
|
|
|
|
2016-12-01 00:58:47 -05:00
|
|
|
void JammerProcessor::on_message(const Message* const msg) {
|
2016-12-05 06:56:41 -05:00
|
|
|
|
2016-12-09 12:21:47 -05:00
|
|
|
jammer_ranges = (JammerRange*)shared_memory.bb_data.data;
|
2016-12-05 06:56:41 -05:00
|
|
|
|
2016-12-01 00:58:47 -05:00
|
|
|
/*const auto message = *reinterpret_cast<const DTMFTXConfigMessage*>(msg);
|
|
|
|
|
|
|
|
if (message.id == Message::ID::DTMFTXConfig) {
|
|
|
|
|
|
|
|
// 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++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 1<<18 = 262144
|
|
|
|
// m = (262144 * a) / 1536000
|
|
|
|
// a = 262144 / 1536000 (*1000 = 171)
|
|
|
|
bw = 171 * (message.bw);
|
|
|
|
tone_length = message.tone_length * 154; // 153.6
|
|
|
|
pause_length = message.pause_length * 154; // 153.6
|
|
|
|
as = 0;
|
|
|
|
tone = false;
|
|
|
|
timer = 0;
|
|
|
|
tone_idx = 0;
|
|
|
|
|
|
|
|
configured = true;
|
|
|
|
}*/
|
|
|
|
}
|
|
|
|
|
2016-07-26 21:03:40 -04:00
|
|
|
int main() {
|
|
|
|
EventDispatcher event_dispatcher { std::make_unique<JammerProcessor>() };
|
|
|
|
event_dispatcher.run();
|
|
|
|
return 0;
|
|
|
|
}
|