Files

196 lines
5.8 KiB
C++
Raw Permalink Normal View History

2017-10-05 05:38:45 +01:00
/*
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
* Copyright (C) 2017 Furrtek
2024-03-21 04:14:54 -05:00
* Copyright (C) 2024 Mark Thompson
2017-10-05 05:38:45 +01: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 "ui_sonde.hpp"
#include "baseband_api.hpp"
#include "audio.hpp"
#include "app_settings.hpp"
#include "file_path.hpp"
2017-10-05 05:38:45 +01:00
#include "portapack.hpp"
2020-08-24 17:31:27 -03:00
#include <cstring>
#include <stdio.h>
2017-10-05 05:38:45 +01:00
using namespace portapack;
namespace pmem = portapack::persistent_memory;
2017-10-05 05:38:45 +01:00
#include "string_format.hpp"
2020-08-24 17:31:27 -03:00
#include "complex.hpp"
void SondeLogger::on_packet(const sonde::Packet& packet) {
2023-05-19 08:16:05 +12:00
const auto formatted = packet.symbols_formatted();
log_file.write_entry(packet.received_at(), formatted.data);
}
2017-10-05 05:38:45 +01:00
namespace ui {
2023-06-18 12:11:04 -07:00
SondeView::SondeView(NavigationView& nav)
: nav_{nav} {
2023-05-19 08:16:05 +12:00
baseband::run_image(portapack::spi_flash::image_tag_sonde);
2023-05-19 08:16:05 +12:00
add_children({&labels,
&field_frequency,
&field_rf_amp,
&field_lna,
&field_vga,
&rssi,
2025-09-13 12:37:34 +02:00
&channel,
2023-05-19 08:16:05 +12:00
&field_volume,
&check_log,
&check_crc,
&text_signature,
&text_serial,
&text_timestamp,
&text_voltage,
&text_frame,
&text_temp,
&text_humid,
&geopos,
&button_see_qr,
&button_see_map});
2017-10-05 05:38:45 +01:00
2023-05-19 08:16:05 +12:00
field_frequency.set_step(500); // euquiq: was 10000, but we are using this for fine-tunning
2023-05-19 08:16:05 +12:00
geopos.set_read_only(true);
2024-03-21 04:14:54 -05:00
check_log.set_value(logging);
2023-05-19 08:16:05 +12:00
check_log.on_select = [this](Checkbox&, bool v) {
logging = v;
};
2024-03-21 04:14:54 -05:00
check_crc.set_value(use_crc);
2023-05-19 08:16:05 +12:00
check_crc.on_select = [this](Checkbox&, bool v) {
use_crc = v;
};
2020-08-24 17:31:27 -03:00
receiver_model.enable();
2017-10-05 05:38:45 +01:00
2023-05-19 08:16:05 +12:00
// QR code with geo URI
button_see_qr.on_select = [this, &nav](Button&) {
2024-03-21 10:56:06 -05:00
std::string geo_uri = "geo:" + to_string_decimal(geopos.lat(), 5) + "," + to_string_decimal(geopos.lon(), 5); // 5 decimal digits for ~1 meter accuracy
nav.push<QRCodeView>(geo_uri.data());
2023-05-19 08:16:05 +12:00
};
2022-01-02 05:56:55 -05:00
2023-05-19 08:16:05 +12:00
button_see_map.on_select = [this, &nav](Button&) {
2024-01-11 22:17:06 +01:00
geomap_view_ = nav.push<GeoMapView>(
2023-05-19 08:16:05 +12:00
sonde_id,
2024-03-21 10:56:06 -05:00
geopos.altitude(),
2023-05-19 08:16:05 +12:00
GeoPos::alt_unit::METERS,
2024-01-05 13:44:30 +01:00
GeoPos::spd_unit::HIDDEN,
2024-03-21 10:56:06 -05:00
geopos.lat(),
geopos.lon(),
2023-05-19 08:16:05 +12:00
999); // set a dummy heading out of range to draw a cross...probably not ideal?
2024-01-11 22:17:06 +01:00
nav.set_on_pop([this]() {
geomap_view_ = nullptr;
});
2023-05-19 08:16:05 +12:00
};
2022-01-02 05:56:55 -05:00
2023-05-19 08:16:05 +12:00
logger = std::make_unique<SondeLogger>();
if (logger)
logger->append(logs_dir / u"SONDE.TXT");
if (pmem::beep_on_packets()) {
audio::set_rate(audio::Rate::Hz_24000);
audio::output::start();
}
2023-05-19 08:16:05 +12:00
// inject a PitchRSSIConfigureMessage in order to arm
// the pitch rssi events that will be used by the
// processor:
const PitchRSSIConfigureMessage message{true, 0};
2023-05-19 08:16:05 +12:00
shared_memory.application_queue.push(message);
2023-05-19 08:16:05 +12:00
baseband::set_pitch_rssi(0, true);
2017-10-05 05:38:45 +01:00
}
SondeView::~SondeView() {
2023-05-19 08:16:05 +12:00
baseband::set_pitch_rssi(0, false);
receiver_model.disable();
2023-05-19 08:16:05 +12:00
baseband::shutdown();
audio::output::stop();
2017-10-05 05:38:45 +01:00
}
2024-01-11 22:17:06 +01:00
void SondeView::on_gps(const GPSPosDataMessage* msg) {
if (!geomap_view_)
return;
geomap_view_->update_my_position(msg->lat, msg->lon, msg->altitude);
}
void SondeView::on_orientation(const OrientationDataMessage* msg) {
if (!geomap_view_)
return;
geomap_view_->update_my_orientation(msg->angle, true);
}
2017-10-05 05:38:45 +01:00
void SondeView::focus() {
2023-06-18 01:14:29 -05:00
field_frequency.focus();
2017-10-05 05:38:45 +01:00
}
2023-05-19 08:16:05 +12:00
void SondeView::on_packet(const sonde::Packet& packet) {
if (!use_crc || packet.crc_ok()) // euquiq: Reject bad packet if crc is on
{
text_signature.set(packet.type_string());
2022-01-02 05:56:55 -05:00
2023-05-19 08:16:05 +12:00
sonde_id = packet.serial_number(); // used also as tag on the geomap
text_serial.set(sonde_id);
2020-08-14 15:51:12 -03:00
2023-05-19 08:16:05 +12:00
text_timestamp.set(to_string_timestamp(packet.received_at()));
2020-08-24 17:31:27 -03:00
2023-05-19 08:16:05 +12:00
text_voltage.set(unit_auto_scale(packet.battery_voltage(), 2, 2) + "V");
2020-08-24 17:31:27 -03:00
2023-05-19 08:16:05 +12:00
text_frame.set(to_string_dec_uint(packet.frame(), 0)); // euquiq: integrate frame #, temp & humid.
2020-08-24 17:31:27 -03:00
2023-05-19 08:16:05 +12:00
temp_humid_info = packet.get_temp_humid();
if (temp_humid_info.humid != 0) {
double decimals = abs(get_decimals(temp_humid_info.humid, 10, true));
text_humid.set(to_string_dec_int((int)temp_humid_info.humid) + "." + to_string_dec_uint(decimals, 1) + "%");
}
2020-08-24 17:31:27 -03:00
2023-05-19 08:16:05 +12:00
if (temp_humid_info.temp != 0) {
double decimals = abs(get_decimals(temp_humid_info.temp, 10, true));
text_temp.set(to_string_dec_int((int)temp_humid_info.temp) + "." + to_string_dec_uint(decimals, 1) + STR_DEGREES_C);
2023-05-19 08:16:05 +12:00
}
2020-08-24 17:31:27 -03:00
2023-05-19 08:16:05 +12:00
gps_info = packet.get_GPS_data();
2023-05-19 08:16:05 +12:00
geopos.set_altitude(gps_info.alt);
geopos.set_lat(gps_info.lat);
geopos.set_lon(gps_info.lon);
2020-08-24 17:31:27 -03:00
2023-05-19 08:16:05 +12:00
if (logger && logging) {
logger->on_packet(packet);
}
if (pmem::beep_on_packets()) {
2024-03-21 04:14:54 -05:00
baseband::request_rssi_beep();
2023-05-19 08:16:05 +12:00
}
}
2017-10-05 05:38:45 +01:00
}
2024-09-04 20:26:31 +02:00
void SondeView::on_freqchg(int64_t freq) {
field_frequency.set_value(freq);
}
2017-10-05 05:38:45 +01:00
} /* namespace ui */