mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2026-08-21 06:59:02 +00:00
297 lines
8.1 KiB
C++
297 lines
8.1 KiB
C++
/*
|
|
* Copyright (C) 2024 EPIRB Decoder Implementation
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef __UI_EPIRB_RX_H__
|
|
#define __UI_EPIRB_RX_H__
|
|
|
|
#include "app_settings.hpp"
|
|
#include "radio_state.hpp"
|
|
#include "ui_widget.hpp"
|
|
#include "ui_navigation.hpp"
|
|
#include "ui_receiver.hpp"
|
|
#include "ui_geomap.hpp"
|
|
|
|
#include "event_m0.hpp"
|
|
#include "signal.hpp"
|
|
#include "message.hpp"
|
|
#include "log_file.hpp"
|
|
|
|
#include "baseband_packet.hpp"
|
|
|
|
/* #include <cstdint>
|
|
#include <cstddef>
|
|
#include <string>
|
|
#include <array> */
|
|
|
|
namespace ui::external_app::epirb_rx {
|
|
|
|
// EPIRB 406 MHz beacon types
|
|
enum class BeaconType : uint8_t {
|
|
OrbitingLocationBeacon = 0,
|
|
PersonalLocatorBeacon = 1,
|
|
EmergencyLocatorTransmitter = 2,
|
|
SerialELT = 3,
|
|
NationalELT = 4,
|
|
Other = 15
|
|
};
|
|
|
|
// EPIRB distress and emergency types
|
|
enum class EmergencyType : uint8_t {
|
|
Fire = 0,
|
|
Flooding = 1,
|
|
Collision = 2,
|
|
Grounding = 3,
|
|
Sinking = 4,
|
|
Disabled = 5,
|
|
Abandoning = 6,
|
|
Piracy = 7,
|
|
Man_Overboard = 8,
|
|
Other = 15
|
|
};
|
|
|
|
struct EPIRBLocation {
|
|
float latitude; // degrees, -90 to +90
|
|
float longitude; // degrees, -180 to +180
|
|
bool valid;
|
|
|
|
EPIRBLocation()
|
|
: latitude(0.0f), longitude(0.0f), valid(false) {}
|
|
EPIRBLocation(float lat, float lon)
|
|
: latitude(lat), longitude(lon), valid(true) {}
|
|
};
|
|
|
|
enum class PacketStatus : uint8_t {
|
|
Valid = 0,
|
|
Corrected = 1,
|
|
Error = 2
|
|
};
|
|
|
|
struct EPIRBBeacon {
|
|
uint32_t beacon_id;
|
|
BeaconType beacon_type;
|
|
EmergencyType emergency_type;
|
|
EPIRBLocation location;
|
|
uint32_t country_code;
|
|
std::string vessel_name;
|
|
rtc::RTC timestamp;
|
|
uint32_t sequence_number;
|
|
PacketStatus packet_status;
|
|
uint8_t error_count;
|
|
|
|
EPIRBBeacon()
|
|
: beacon_id(0), beacon_type(BeaconType::Other), emergency_type(EmergencyType::Other), location(), country_code(0), vessel_name(), timestamp(), sequence_number(0), packet_status(PacketStatus::Error), error_count(0) {}
|
|
};
|
|
|
|
class EPIRBDecoder {
|
|
public:
|
|
static EPIRBBeacon decode_packet(const baseband::Packet& packet);
|
|
|
|
private:
|
|
static EPIRBLocation decode_location(const std::array<uint8_t, 16>& data);
|
|
static BeaconType decode_beacon_type(uint8_t type_bits);
|
|
static EmergencyType decode_emergency_type(uint8_t emergency_bits);
|
|
static uint32_t decode_country_code(const std::array<uint8_t, 16>& data);
|
|
static std::string decode_vessel_name(const std::array<uint8_t, 16>& data);
|
|
|
|
// BCH error correction methods
|
|
static PacketStatus perform_bch_check(std::array<uint8_t, 16>& data, uint8_t& error_count);
|
|
static uint32_t calculate_bch_syndrome(const std::array<uint8_t, 16>& data);
|
|
static bool correct_single_error(std::array<uint8_t, 16>& data, uint32_t syndrome);
|
|
static uint8_t count_bit_errors(const std::array<uint8_t, 16>& original, const std::array<uint8_t, 16>& corrected);
|
|
};
|
|
|
|
class EPIRBLogger {
|
|
public:
|
|
Optional<File::Error> append(const std::filesystem::path& filename) {
|
|
return log_file.append(filename);
|
|
}
|
|
|
|
void on_packet(const EPIRBBeacon& beacon);
|
|
|
|
private:
|
|
LogFile log_file{};
|
|
};
|
|
|
|
// Forward declarations of formatting functions
|
|
std::string format_beacon_type(BeaconType type);
|
|
std::string format_emergency_type(EmergencyType type);
|
|
std::string format_packet_status(PacketStatus status);
|
|
ui::Color get_packet_status_color(PacketStatus status);
|
|
|
|
class EPIRBBeaconDetailView : public ui::View {
|
|
public:
|
|
std::function<void(void)> on_close{};
|
|
|
|
EPIRBBeaconDetailView(ui::NavigationView& nav);
|
|
EPIRBBeaconDetailView(const EPIRBBeaconDetailView&) = delete;
|
|
EPIRBBeaconDetailView& operator=(const EPIRBBeaconDetailView&) = delete;
|
|
|
|
void set_beacon(const EPIRBBeacon& beacon);
|
|
const EPIRBBeacon& beacon() const { return beacon_; }
|
|
|
|
void focus() override;
|
|
void paint(ui::Painter&) override;
|
|
|
|
ui::GeoMapView* get_geomap_view() { return geomap_view; }
|
|
|
|
private:
|
|
EPIRBBeacon beacon_{};
|
|
|
|
ui::Button button_done{
|
|
{125, 224, 96, 24},
|
|
"Done"};
|
|
ui::Button button_see_map{
|
|
{19, 224, 96, 24},
|
|
"See on map"};
|
|
|
|
ui::GeoMapView* geomap_view{nullptr};
|
|
|
|
ui::Rect draw_field(
|
|
ui::Painter& painter,
|
|
const ui::Rect& draw_rect,
|
|
const ui::Style& style,
|
|
const std::string& label,
|
|
const std::string& value);
|
|
};
|
|
|
|
class EPIRBAppView : public ui::View {
|
|
public:
|
|
EPIRBAppView(ui::NavigationView& nav);
|
|
~EPIRBAppView();
|
|
|
|
void set_parent_rect(const ui::Rect new_parent_rect) override;
|
|
void paint(ui::Painter&) override;
|
|
void focus() override;
|
|
|
|
std::string title() const override { return "EPIRB RX"; }
|
|
|
|
private:
|
|
app_settings::SettingsManager settings_{
|
|
"rx_epirb", app_settings::Mode::RX};
|
|
|
|
ui::NavigationView& nav_;
|
|
|
|
std::vector<EPIRBBeacon> recent_beacons{};
|
|
std::unique_ptr<EPIRBLogger> logger{};
|
|
|
|
EPIRBBeaconDetailView beacon_detail_view{nav_};
|
|
|
|
static constexpr auto header_height = 4 * 16;
|
|
|
|
ui::Text label_frequency{
|
|
{UI_POS_X(0), UI_POS_Y(0), 4 * 8, 1 * 16},
|
|
"Freq"};
|
|
|
|
ui::OptionsField options_frequency{
|
|
{5 * 8, UI_POS_Y(0)},
|
|
7,
|
|
{
|
|
{"406.028", 406028000},
|
|
{"406.025", 406025000},
|
|
{"406.037", 406037000},
|
|
{"433.025", 433025000},
|
|
{"144.875", 144875000},
|
|
}};
|
|
|
|
ui::RFAmpField field_rf_amp{
|
|
{13 * 8, UI_POS_Y(0)}};
|
|
|
|
ui::LNAGainField field_lna{
|
|
{15 * 8, UI_POS_Y(0)}};
|
|
|
|
ui::VGAGainField field_vga{
|
|
{18 * 8, UI_POS_Y(0)}};
|
|
|
|
ui::RSSI rssi{
|
|
{UI_POS_X(21), 0, UI_POS_WIDTH_REMAINING(24), 4}};
|
|
|
|
ui::Channel channel{
|
|
{UI_POS_X(21), 5, UI_POS_WIDTH_REMAINING(24), 4}};
|
|
|
|
ui::AudioVolumeField field_volume{
|
|
{screen_width - 2 * 8, UI_POS_Y(0)}};
|
|
|
|
// Status display
|
|
ui::Text label_status{
|
|
{UI_POS_X(0), 1 * 16, 15 * 8, 1 * 16},
|
|
"Listening..."};
|
|
|
|
ui::Text label_beacons_count{
|
|
{16 * 8, 1 * 16, 14 * 8, 1 * 16},
|
|
"Beacons: 0"};
|
|
|
|
ui::Text label_packet_stats{
|
|
{UI_POS_X(0), 3 * 16, 29 * 8, 1 * 16},
|
|
""};
|
|
|
|
// Latest beacon info display
|
|
ui::Text label_latest{
|
|
{UI_POS_X(0), 2 * 16, 8 * 8, 1 * 16},
|
|
"Latest:"};
|
|
|
|
ui::Text text_latest_info{
|
|
{8 * 8, 2 * 16, 22 * 8, 1 * 16},
|
|
""};
|
|
|
|
// Beacon list
|
|
ui::Console console{
|
|
{0, 4 * 16, 240, 152}};
|
|
|
|
ui::Button button_map{
|
|
{0, 224, 60, 24},
|
|
"Map"};
|
|
|
|
ui::Button button_clear{
|
|
{64, 224, 60, 24},
|
|
"Clear"};
|
|
|
|
ui::Button button_log{
|
|
{128, 224, 60, 24},
|
|
"Log"};
|
|
|
|
SignalToken signal_token_tick_second{};
|
|
uint32_t beacons_received = 0;
|
|
uint32_t packets_valid = 0;
|
|
uint32_t packets_corrected = 0;
|
|
uint32_t packets_error = 0;
|
|
|
|
MessageHandlerRegistration message_handler_packet{
|
|
Message::ID::EPIRBPacket,
|
|
[this](Message* const p) {
|
|
const auto message = static_cast<const EPIRBPacketMessage*>(p);
|
|
this->on_packet(message->packet);
|
|
}};
|
|
|
|
void on_packet(const baseband::Packet& packet);
|
|
void on_beacon_decoded(const EPIRBBeacon& beacon);
|
|
void on_show_map();
|
|
void on_clear_beacons();
|
|
void on_toggle_log();
|
|
void on_tick_second();
|
|
|
|
void update_display();
|
|
std::string format_beacon_summary(const EPIRBBeacon& beacon);
|
|
std::string format_location(const EPIRBLocation& location);
|
|
};
|
|
|
|
} // namespace ui::external_app::epirb_rx
|
|
|
|
#endif // __UI_EPIRB_RX_H__
|