2015-08-27 16:31:39 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 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.
|
|
|
|
*/
|
|
|
|
|
2015-11-10 17:07:07 -05:00
|
|
|
#include "proc_ais.hpp"
|
2015-11-07 17:10:44 -05:00
|
|
|
|
2015-08-27 16:31:39 -04:00
|
|
|
#include "portapack_shared_memory.hpp"
|
|
|
|
|
2016-01-01 16:20:02 -05:00
|
|
|
#include "dsp_fir_taps.hpp"
|
|
|
|
|
2016-06-30 14:53:58 -04:00
|
|
|
#include "event_m4.hpp"
|
|
|
|
|
2016-01-01 16:20:02 -05:00
|
|
|
AISProcessor::AISProcessor() {
|
|
|
|
decim_0.configure(taps_11k0_decim_0.taps, 33554432);
|
|
|
|
decim_1.configure(taps_11k0_decim_1.taps, 131072);
|
|
|
|
}
|
|
|
|
|
2015-12-10 15:36:12 -05:00
|
|
|
void AISProcessor::execute(const buffer_c8_t& buffer) {
|
2015-08-27 16:31:39 -04:00
|
|
|
/* 2.4576MHz, 2048 samples */
|
|
|
|
|
2016-01-01 16:20:02 -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-08-27 16:31:39 -04:00
|
|
|
|
2016-01-04 18:41:49 -05:00
|
|
|
/* 38.4kHz, 32 samples */
|
2015-11-07 17:10:44 -05:00
|
|
|
feed_channel_stats(decimator_out);
|
2015-08-27 16:31:39 -04:00
|
|
|
|
2015-11-07 17:10:44 -05:00
|
|
|
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-10-15 16:31:00 -04:00
|
|
|
clock_recovery(mf.get_output());
|
2015-09-28 14:02:39 -04:00
|
|
|
}
|
2015-08-27 16:31:39 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-10 17:07:07 -05:00
|
|
|
void AISProcessor::consume_symbol(
|
2015-09-26 01:13:36 -04:00
|
|
|
const float raw_symbol
|
2015-08-27 16:31:39 -04:00
|
|
|
) {
|
2015-09-26 01:13:36 -04:00
|
|
|
const uint_fast8_t sliced_symbol = (raw_symbol >= 0.0f) ? 1 : 0;
|
|
|
|
const auto decoded_symbol = nrzi_decode(sliced_symbol);
|
|
|
|
|
2015-09-28 15:46:44 -04:00
|
|
|
packet_builder.execute(decoded_symbol);
|
2015-08-27 16:31:39 -04:00
|
|
|
}
|
|
|
|
|
2015-11-10 17:07:07 -05:00
|
|
|
void AISProcessor::payload_handler(
|
2015-12-08 18:15:51 -05:00
|
|
|
const baseband::Packet& packet
|
2015-08-27 16:31:39 -04:00
|
|
|
) {
|
2015-12-10 18:13:07 -05:00
|
|
|
const AISPacketMessage message { packet };
|
2015-08-27 16:31:39 -04:00
|
|
|
shared_memory.application_queue.push(message);
|
|
|
|
}
|
2016-06-30 14:53:58 -04:00
|
|
|
|
2016-07-25 00:42:11 -04:00
|
|
|
int main() {
|
2016-06-30 14:53:58 -04:00
|
|
|
EventDispatcher event_dispatcher { std::make_unique<AISProcessor>() };
|
|
|
|
event_dispatcher.run();
|
2016-07-25 00:42:11 -04:00
|
|
|
return 0;
|
2016-06-30 14:53:58 -04:00
|
|
|
}
|