mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
b058d609eb
Now reads the RTC peripheral at the end of each received packet. TODO: Improve resolution to milliseconds or better. TODO: Work back from end of packet to compute timestamp for beginning of packet. TODO: Reuse ChibiOS RTC code, which isn't used now because ChibiOS on M0 core is responsible for RTC configuration, and including ChibiOS RTC API on M4 will also try to initialize/manage the peripheral.
102 lines
2.5 KiB
C++
102 lines
2.5 KiB
C++
/*
|
|
* 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 "ert_app.hpp"
|
|
|
|
#include "portapack.hpp"
|
|
using namespace portapack;
|
|
|
|
#include "manchester.hpp"
|
|
|
|
#include "crc.hpp"
|
|
#include "string_format.hpp"
|
|
|
|
ERTModel::ERTModel() {
|
|
receiver_model.set_baseband_configuration({
|
|
.mode = 6,
|
|
.sampling_rate = 4194304,
|
|
.decimation_factor = 1,
|
|
});
|
|
receiver_model.set_baseband_bandwidth(2500000);
|
|
|
|
log_file.open_for_append("ert.txt");
|
|
}
|
|
|
|
bool ERTModel::on_packet(const ert::Packet& packet) {
|
|
if( log_file.is_ready() ) {
|
|
const auto formatted = packet.symbols_formatted();
|
|
log_file.write_entry(packet.received_at(), formatted.data + "/" + formatted.errors);
|
|
}
|
|
|
|
return packet.crc_ok();
|
|
}
|
|
|
|
namespace ui {
|
|
|
|
void ERTView::on_show() {
|
|
Console::on_show();
|
|
|
|
auto& message_map = context().message_map();
|
|
message_map.register_handler(Message::ID::ERTPacket,
|
|
[this](Message* const p) {
|
|
const auto message = static_cast<const ERTPacketMessage*>(p);
|
|
const ert::Packet packet { message->type, message->packet };
|
|
if( this->model.on_packet(packet) ) {
|
|
this->on_packet(packet);
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
void ERTView::on_hide() {
|
|
auto& message_map = context().message_map();
|
|
message_map.unregister_handler(Message::ID::ERTPacket);
|
|
|
|
Console::on_hide();
|
|
}
|
|
|
|
void ERTView::on_packet(const ert::Packet& packet) {
|
|
std::string msg;
|
|
switch(packet.type()) {
|
|
case ert::Packet::Type::SCM:
|
|
msg += "SCM ";
|
|
msg += to_string_dec_uint(packet.id(), 10);
|
|
msg += " ";
|
|
msg += to_string_dec_uint(packet.consumption(), 10);
|
|
break;
|
|
|
|
case ert::Packet::Type::IDM:
|
|
msg += "IDM ";
|
|
msg += to_string_dec_uint(packet.id(), 10);
|
|
msg += " ";
|
|
msg += to_string_dec_uint(packet.consumption(), 10);
|
|
break;
|
|
|
|
default:
|
|
msg += "???";
|
|
break;
|
|
}
|
|
|
|
writeln(msg);
|
|
}
|
|
|
|
} /* namespace ui */
|