2015-11-10 18:19:56 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 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 "proc_tpms.hpp"
|
|
|
|
|
|
|
|
#include "portapack_shared_memory.hpp"
|
|
|
|
|
2016-01-02 13:42:40 -05:00
|
|
|
#include "dsp_fir_taps.hpp"
|
|
|
|
|
2016-01-02 13:49:37 -05:00
|
|
|
// IFIR image-reject filter: fs=2457600, pass=100000, stop=407200, decim=4, fout=614400
|
2016-01-02 13:42:40 -05:00
|
|
|
static constexpr fir_taps_real<24> taps_200k_decim_0 = {
|
|
|
|
.pass_frequency_normalized = 100000.0f / 2457600.0f,
|
|
|
|
.stop_frequency_normalized = 407200.0f / 2457600.0f,
|
|
|
|
.taps = { {
|
|
|
|
90, 94, 4, -240, -570, -776, -563, 309,
|
|
|
|
1861, 3808, 5618, 6710, 6710, 5618, 3808, 1861,
|
|
|
|
309, -563, -776, -570, -240, 4, 94, 90,
|
|
|
|
} },
|
|
|
|
};
|
|
|
|
|
2016-01-02 13:49:37 -05:00
|
|
|
// IFIR prototype filter: fs=614400, pass=100000, stop=207200, decim=2, fout=307200
|
2016-01-02 13:42:40 -05:00
|
|
|
static constexpr fir_taps_real<16> taps_200k_decim_1 = {
|
|
|
|
.pass_frequency_normalized = 100000.0f / 614400.0f,
|
|
|
|
.stop_frequency_normalized = 207200.0f / 614400.0f,
|
|
|
|
.taps = { {
|
|
|
|
-132, -256, 545, 834, -1507, -2401, 4666, 14583,
|
|
|
|
14583, 4666, -2401, -1507, 834, 545, -256, -132,
|
|
|
|
} },
|
|
|
|
};
|
|
|
|
|
|
|
|
TPMSProcessor::TPMSProcessor() {
|
|
|
|
decim_0.configure(taps_200k_decim_0.taps, 33554432);
|
|
|
|
decim_1.configure(taps_200k_decim_1.taps, 131072);
|
|
|
|
}
|
|
|
|
|
2015-12-10 15:36:12 -05:00
|
|
|
void TPMSProcessor::execute(const buffer_c8_t& buffer) {
|
2015-11-10 18:19:56 -05:00
|
|
|
/* 2.4576MHz, 2048 samples */
|
|
|
|
|
2016-01-02 13:42:40 -05:00
|
|
|
const auto decim_0_out = decim_0.execute(buffer, dst_buffer);
|
|
|
|
const auto decim_1_out = decim_1.execute(decim_0_out, dst_buffer);
|
|
|
|
const auto decimator_out = decim_1_out;
|
2015-11-10 18:19:56 -05:00
|
|
|
|
2016-01-04 18:41:49 -05:00
|
|
|
/* 307.2kHz, 256 samples */
|
2015-11-10 18:19:56 -05:00
|
|
|
feed_channel_stats(decimator_out);
|
|
|
|
|
|
|
|
for(size_t i=0; i<decimator_out.count; i++) {
|
2015-11-20 14:01:41 -05:00
|
|
|
if( mf.execute_once(decimator_out.p[i]) ) {
|
2015-11-10 18:19:56 -05:00
|
|
|
clock_recovery(mf.get_output());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-04 12:07:07 -05:00
|
|
|
mute_audio();
|
2015-11-10 18:19:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void TPMSProcessor::consume_symbol(
|
|
|
|
const float raw_symbol
|
|
|
|
) {
|
|
|
|
const uint_fast8_t sliced_symbol = (raw_symbol >= 0.0f) ? 1 : 0;
|
|
|
|
packet_builder.execute(sliced_symbol);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TPMSProcessor::payload_handler(
|
2015-12-08 18:15:51 -05:00
|
|
|
const baseband::Packet& packet
|
2015-11-10 18:19:56 -05:00
|
|
|
) {
|
2015-12-10 18:13:07 -05:00
|
|
|
const TPMSPacketMessage message { packet };
|
2015-11-10 18:19:56 -05:00
|
|
|
shared_memory.application_queue.push(message);
|
|
|
|
}
|