2015-12-02 00:59:47 -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.
|
|
|
|
*/
|
|
|
|
|
2015-12-08 18:28:33 -05:00
|
|
|
#include "ert_app.hpp"
|
2015-12-02 00:59:47 -05:00
|
|
|
|
2016-02-10 23:11:19 -05:00
|
|
|
#include "baseband_api.hpp"
|
2015-12-02 00:59:47 -05:00
|
|
|
|
2016-07-25 19:07:22 -04:00
|
|
|
#include "portapack.hpp"
|
|
|
|
using namespace portapack;
|
|
|
|
|
2015-12-02 00:59:47 -05:00
|
|
|
#include "manchester.hpp"
|
|
|
|
|
2015-12-07 14:38:35 -05:00
|
|
|
#include "crc.hpp"
|
2015-12-06 18:32:21 -05:00
|
|
|
#include "string_format.hpp"
|
|
|
|
|
2016-01-24 00:46:41 -05:00
|
|
|
namespace ert {
|
|
|
|
|
|
|
|
namespace format {
|
|
|
|
|
|
|
|
std::string type(Packet::Type value) {
|
|
|
|
switch(value) {
|
|
|
|
default:
|
|
|
|
case Packet::Type::Unknown: return "???";
|
|
|
|
case Packet::Type::IDM: return "IDM";
|
|
|
|
case Packet::Type::SCM: return "SCM";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string id(ID value) {
|
|
|
|
return to_string_dec_uint(value, 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string consumption(Consumption value) {
|
|
|
|
return to_string_dec_uint(value, 10);
|
|
|
|
}
|
|
|
|
|
2016-04-06 19:16:10 -04:00
|
|
|
std::string commodity_type(CommodityType value) {
|
|
|
|
return to_string_dec_uint(value, 2);
|
|
|
|
}
|
|
|
|
|
2016-01-24 00:46:41 -05:00
|
|
|
} /* namespace format */
|
|
|
|
|
|
|
|
} /* namespace ert */
|
|
|
|
|
2016-01-24 00:17:04 -05:00
|
|
|
void ERTLogger::on_packet(const ert::Packet& packet) {
|
2016-05-16 17:01:44 -04:00
|
|
|
const auto formatted = packet.symbols_formatted();
|
|
|
|
log_file.write_entry(packet.received_at(), formatted.data + "/" + formatted.errors);
|
2015-12-02 00:59:47 -05:00
|
|
|
}
|
|
|
|
|
2016-04-06 19:16:10 -04:00
|
|
|
const ERTRecentEntry::Key ERTRecentEntry::invalid_key { };
|
|
|
|
|
2016-01-24 01:24:48 -05:00
|
|
|
void ERTRecentEntry::update(const ert::Packet& packet) {
|
|
|
|
received_count++;
|
|
|
|
|
|
|
|
last_consumption = packet.consumption();
|
|
|
|
}
|
|
|
|
|
2015-12-02 00:59:47 -05:00
|
|
|
namespace ui {
|
|
|
|
|
2016-01-24 01:24:48 -05:00
|
|
|
template<>
|
2016-09-05 15:09:29 -04:00
|
|
|
void RecentEntriesTable<ERTRecentEntries>::draw(
|
2016-01-24 01:24:48 -05:00
|
|
|
const Entry& entry,
|
|
|
|
const Rect& target_rect,
|
|
|
|
Painter& painter,
|
2016-09-03 01:44:40 -04:00
|
|
|
const Style& style
|
2016-01-24 01:24:48 -05:00
|
|
|
) {
|
2016-04-06 19:16:10 -04:00
|
|
|
std::string line = ert::format::id(entry.id) + " " + ert::format::commodity_type(entry.commodity_type) + " " + ert::format::consumption(entry.last_consumption);
|
2016-01-24 01:24:48 -05:00
|
|
|
|
|
|
|
if( entry.received_count > 999 ) {
|
|
|
|
line += " +++";
|
|
|
|
} else {
|
|
|
|
line += " " + to_string_dec_uint(entry.received_count, 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
line.resize(target_rect.width() / 8, ' ');
|
2016-11-28 14:25:27 -05:00
|
|
|
painter.draw_string(target_rect.location(), style, line);
|
2016-01-24 01:24:48 -05:00
|
|
|
}
|
|
|
|
|
2016-01-25 01:38:36 -05:00
|
|
|
ERTAppView::ERTAppView(NavigationView&) {
|
2016-07-01 13:37:22 -04:00
|
|
|
baseband::run_image(portapack::spi_flash::image_tag_ert);
|
2016-06-24 14:30:54 -04:00
|
|
|
|
2016-09-05 17:53:04 -04:00
|
|
|
add_children({
|
2016-07-25 19:06:09 -04:00
|
|
|
&field_rf_amp,
|
|
|
|
&field_lna,
|
|
|
|
&field_vga,
|
2016-07-25 19:12:32 -04:00
|
|
|
&rssi,
|
2016-01-24 01:24:48 -05:00
|
|
|
&recent_entries_view,
|
2016-09-05 17:53:04 -04:00
|
|
|
});
|
2016-01-24 01:24:48 -05:00
|
|
|
|
2022-04-15 08:43:44 -04:00
|
|
|
// load app settings
|
|
|
|
auto rc = settings.load("rx_ert", &app_settings);
|
|
|
|
if(rc == SETTINGS_OK) {
|
|
|
|
field_lna.set_value(app_settings.lna);
|
|
|
|
field_vga.set_value(app_settings.vga);
|
|
|
|
field_rf_amp.set_value(app_settings.rx_amp);
|
|
|
|
}
|
|
|
|
|
2022-08-21 04:24:04 -04:00
|
|
|
receiver_model.set_tuning_frequency(initial_target_frequency);
|
|
|
|
receiver_model.set_sampling_rate(sampling_rate);
|
|
|
|
receiver_model.set_baseband_bandwidth(baseband_bandwidth);
|
|
|
|
receiver_model.enable(); // Before using radio::enable(), but not updating Ant.DC-Bias.
|
2022-04-15 08:43:44 -04:00
|
|
|
|
2022-08-21 04:24:04 -04:00
|
|
|
/* radio::enable({
|
2016-02-10 19:58:25 -05:00
|
|
|
initial_target_frequency,
|
|
|
|
sampling_rate,
|
|
|
|
baseband_bandwidth,
|
|
|
|
rf::Direction::Receive,
|
2016-07-25 19:07:22 -04:00
|
|
|
receiver_model.rf_amp(),
|
|
|
|
static_cast<int8_t>(receiver_model.lna()),
|
|
|
|
static_cast<int8_t>(receiver_model.vga()),
|
2022-08-21 04:24:04 -04:00
|
|
|
}); */
|
2016-02-10 19:31:52 -05:00
|
|
|
|
2016-05-16 17:01:44 -04:00
|
|
|
logger = std::make_unique<ERTLogger>();
|
|
|
|
if( logger ) {
|
2016-08-21 21:06:39 -04:00
|
|
|
logger->append(u"ert.txt");
|
2016-05-16 17:01:44 -04:00
|
|
|
}
|
2015-12-02 00:59:47 -05:00
|
|
|
}
|
|
|
|
|
2016-01-24 01:24:48 -05:00
|
|
|
ERTAppView::~ERTAppView() {
|
2022-04-15 08:43:44 -04:00
|
|
|
|
|
|
|
// save app settings
|
|
|
|
settings.save("rx_ert", &app_settings);
|
|
|
|
|
2016-02-10 19:31:52 -05:00
|
|
|
radio::disable();
|
2016-06-24 14:30:54 -04:00
|
|
|
|
|
|
|
baseband::shutdown();
|
2015-12-02 00:59:47 -05:00
|
|
|
}
|
|
|
|
|
2016-01-27 13:18:44 -05:00
|
|
|
void ERTAppView::focus() {
|
2016-07-25 19:06:26 -04:00
|
|
|
field_vga.focus();
|
2016-01-27 13:18:44 -05:00
|
|
|
}
|
|
|
|
|
2016-01-24 01:24:48 -05:00
|
|
|
void ERTAppView::set_parent_rect(const Rect new_parent_rect) {
|
|
|
|
View::set_parent_rect(new_parent_rect);
|
2016-07-25 19:06:09 -04:00
|
|
|
recent_entries_view.set_parent_rect({ 0, header_height, new_parent_rect.width(), new_parent_rect.height() - header_height });
|
2016-01-24 01:24:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void ERTAppView::on_packet(const ert::Packet& packet) {
|
2016-02-10 23:53:14 -05:00
|
|
|
if( logger ) {
|
|
|
|
logger->on_packet(packet);
|
|
|
|
}
|
2016-01-24 00:17:04 -05:00
|
|
|
|
|
|
|
if( packet.crc_ok() ) {
|
2016-09-03 21:26:48 -04:00
|
|
|
auto& entry = ::on_packet(recent, ERTRecentEntry::Key { packet.id(), packet.commodity_type() });
|
2016-09-03 19:38:44 -04:00
|
|
|
entry.update(packet);
|
2016-01-24 01:24:48 -05:00
|
|
|
recent_entries_view.set_dirty();
|
2016-01-24 00:17:04 -05:00
|
|
|
}
|
2015-12-02 00:59:47 -05:00
|
|
|
}
|
|
|
|
|
2016-01-24 01:24:48 -05:00
|
|
|
void ERTAppView::on_show_list() {
|
|
|
|
recent_entries_view.hidden(false);
|
|
|
|
recent_entries_view.focus();
|
|
|
|
}
|
|
|
|
|
2015-12-02 00:59:47 -05:00
|
|
|
} /* namespace ui */
|