2015-12-02 00:53:28 -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 "tpms_app.hpp"
|
2015-12-02 00:53:28 -05:00
|
|
|
|
2016-02-10 23:11:19 -05:00
|
|
|
#include "baseband_api.hpp"
|
2015-12-02 00:53:28 -05:00
|
|
|
|
2016-06-06 12:50:48 -04:00
|
|
|
#include "portapack.hpp"
|
|
|
|
using namespace portapack;
|
|
|
|
|
2015-12-02 16:38:17 -05:00
|
|
|
#include "string_format.hpp"
|
2015-12-02 00:53:28 -05:00
|
|
|
|
2016-01-19 01:28:33 -05:00
|
|
|
#include "utility.hpp"
|
|
|
|
|
2016-01-18 17:34:30 -05:00
|
|
|
namespace tpms {
|
|
|
|
|
2016-01-22 18:00:25 -05:00
|
|
|
namespace format {
|
|
|
|
|
|
|
|
std::string type(Reading::Type type) {
|
|
|
|
return to_string_dec_uint(toUType(type), 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string id(TransponderID id) {
|
|
|
|
return to_string_hex(id.value(), 8);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string pressure(Pressure pressure) {
|
|
|
|
return to_string_dec_int(pressure.kilopascal(), 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string temperature(Temperature temperature) {
|
|
|
|
return to_string_dec_int(temperature.celsius(), 3);
|
|
|
|
}
|
|
|
|
|
2016-05-17 17:23:03 -04:00
|
|
|
std::string flags(Flags flags) {
|
|
|
|
return to_string_hex(flags, 2);
|
|
|
|
}
|
|
|
|
|
2016-05-25 20:59:14 -04:00
|
|
|
static std::string signal_type(SignalType signal_type) {
|
|
|
|
switch(signal_type) {
|
|
|
|
case SignalType::FSK_19k2_Schrader: return "FSK 38400 19200 Schrader";
|
|
|
|
case SignalType::OOK_8k192_Schrader: return "OOK - 8192 Schrader";
|
|
|
|
case SignalType::OOK_8k4_Schrader: return "OOK - 8400 Schrader";
|
|
|
|
default: return "- - - -";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-22 18:00:25 -05:00
|
|
|
} /* namespace format */
|
|
|
|
|
2016-01-18 17:34:30 -05:00
|
|
|
} /* namespace tpms */
|
|
|
|
|
2016-02-10 19:31:52 -05:00
|
|
|
void TPMSLogger::on_packet(const tpms::Packet& packet, const uint32_t target_frequency) {
|
2016-01-18 17:34:30 -05:00
|
|
|
const auto hex_formatted = packet.symbols_formatted();
|
2015-12-02 00:53:28 -05:00
|
|
|
|
2016-05-16 17:01:44 -04:00
|
|
|
// TODO: function doesn't take uint64_t, so when >= 1<<32, weirdness will ensue!
|
|
|
|
const auto tuning_frequency_str = to_string_dec_uint(target_frequency, 10);
|
2015-12-02 00:53:28 -05:00
|
|
|
|
2016-05-25 20:59:14 -04:00
|
|
|
std::string entry = tuning_frequency_str + " " + tpms::format::signal_type(packet.signal_type()) + " " + hex_formatted.data + "/" + hex_formatted.errors;
|
2016-05-16 17:01:44 -04:00
|
|
|
log_file.write_entry(packet.received_at(), entry);
|
2015-12-02 00:53:28 -05:00
|
|
|
}
|
|
|
|
|
2016-01-22 18:00:25 -05:00
|
|
|
const TPMSRecentEntry::Key TPMSRecentEntry::invalid_key = { tpms::Reading::Type::None, 0 };
|
|
|
|
|
|
|
|
void TPMSRecentEntry::update(const tpms::Reading& reading) {
|
|
|
|
received_count++;
|
|
|
|
|
|
|
|
if( reading.pressure().is_valid() ) {
|
|
|
|
last_pressure = reading.pressure();
|
|
|
|
}
|
|
|
|
if( reading.temperature().is_valid() ) {
|
|
|
|
last_temperature = reading.temperature();
|
|
|
|
}
|
2016-05-17 17:23:03 -04:00
|
|
|
if( reading.flags().is_valid() ) {
|
|
|
|
last_flags = reading.flags();
|
|
|
|
}
|
2016-01-22 18:00:25 -05:00
|
|
|
}
|
|
|
|
|
2015-12-02 00:53:28 -05:00
|
|
|
namespace ui {
|
|
|
|
|
2016-01-22 18:00:25 -05:00
|
|
|
template<>
|
2016-09-05 15:09:29 -04:00
|
|
|
void RecentEntriesTable<TPMSRecentEntries>::draw(
|
2016-01-22 18:00:25 -05:00
|
|
|
const Entry& entry,
|
|
|
|
const Rect& target_rect,
|
|
|
|
Painter& painter,
|
2016-09-03 01:44:40 -04:00
|
|
|
const Style& style
|
2016-01-22 18:00:25 -05:00
|
|
|
) {
|
|
|
|
std::string line = tpms::format::type(entry.type) + " " + tpms::format::id(entry.id);
|
|
|
|
|
|
|
|
if( entry.last_pressure.is_valid() ) {
|
|
|
|
line += " " + tpms::format::pressure(entry.last_pressure.value());
|
|
|
|
} else {
|
|
|
|
line += " " " ";
|
|
|
|
}
|
|
|
|
|
|
|
|
if( entry.last_temperature.is_valid() ) {
|
|
|
|
line += " " + tpms::format::temperature(entry.last_temperature.value());
|
|
|
|
} else {
|
|
|
|
line += " " " ";
|
|
|
|
}
|
|
|
|
|
|
|
|
if( entry.received_count > 999 ) {
|
|
|
|
line += " +++";
|
|
|
|
} else {
|
|
|
|
line += " " + to_string_dec_uint(entry.received_count, 3);
|
|
|
|
}
|
|
|
|
|
2016-05-17 17:23:03 -04:00
|
|
|
if( entry.last_flags.is_valid() ) {
|
|
|
|
line += " " + tpms::format::flags(entry.last_flags.value());
|
|
|
|
} else {
|
|
|
|
line += " " " ";
|
|
|
|
}
|
|
|
|
|
2016-01-22 18:00:25 -05:00
|
|
|
line.resize(target_rect.width() / 8, ' ');
|
2016-11-28 14:25:27 -05:00
|
|
|
painter.draw_string(target_rect.location(), style, line);
|
2016-01-22 18:00:25 -05:00
|
|
|
}
|
|
|
|
|
2016-01-25 01:38:36 -05:00
|
|
|
TPMSAppView::TPMSAppView(NavigationView&) {
|
2016-07-01 13:37:22 -04:00
|
|
|
baseband::run_image(portapack::spi_flash::image_tag_tpms);
|
2016-06-24 14:30:54 -04:00
|
|
|
|
2016-09-05 17:53:04 -04:00
|
|
|
add_children({
|
2016-06-06 12:50:48 -04:00
|
|
|
&rssi,
|
|
|
|
&channel,
|
2016-06-21 18:36:57 -04:00
|
|
|
&options_band,
|
2016-06-06 13:34:39 -04:00
|
|
|
&field_rf_amp,
|
2016-06-06 12:50:48 -04:00
|
|
|
&field_lna,
|
|
|
|
&field_vga,
|
2016-01-22 18:00:25 -05:00
|
|
|
&recent_entries_view,
|
2016-09-05 17:53:04 -04:00
|
|
|
});
|
2015-12-02 00:53:28 -05:00
|
|
|
|
2016-02-10 19:58:25 -05:00
|
|
|
radio::enable({
|
|
|
|
tuning_frequency(),
|
|
|
|
sampling_rate,
|
|
|
|
baseband_bandwidth,
|
|
|
|
rf::Direction::Receive,
|
2016-07-25 19:07:22 -04:00
|
|
|
receiver_model.rf_amp(),
|
2016-06-06 12:50:48 -04:00
|
|
|
static_cast<int8_t>(receiver_model.lna()),
|
|
|
|
static_cast<int8_t>(receiver_model.vga()),
|
2016-02-10 19:58:25 -05:00
|
|
|
});
|
2016-02-10 19:31:52 -05:00
|
|
|
|
2016-06-21 18:36:57 -04:00
|
|
|
options_band.on_change = [this](size_t, OptionsField::value_t v) {
|
|
|
|
this->on_band_changed(v);
|
|
|
|
};
|
|
|
|
options_band.set_by_value(target_frequency());
|
|
|
|
|
2016-05-16 17:01:44 -04:00
|
|
|
logger = std::make_unique<TPMSLogger>();
|
|
|
|
if( logger ) {
|
2016-08-21 21:06:39 -04:00
|
|
|
logger->append(u"tpms.txt");
|
2016-05-16 17:01:44 -04:00
|
|
|
}
|
2015-12-02 00:53:28 -05:00
|
|
|
}
|
|
|
|
|
2016-01-18 16:41:19 -05:00
|
|
|
TPMSAppView::~TPMSAppView() {
|
2016-02-10 19:31:52 -05:00
|
|
|
radio::disable();
|
2016-06-24 14:30:54 -04:00
|
|
|
|
|
|
|
baseband::shutdown();
|
2016-01-18 16:41:19 -05:00
|
|
|
}
|
2015-12-02 00:53:28 -05:00
|
|
|
|
2016-01-27 13:18:44 -05:00
|
|
|
void TPMSAppView::focus() {
|
2016-06-24 01:11:47 -04:00
|
|
|
options_band.focus();
|
2016-01-27 13:18:44 -05:00
|
|
|
}
|
|
|
|
|
2016-01-18 16:41:19 -05:00
|
|
|
void TPMSAppView::set_parent_rect(const Rect new_parent_rect) {
|
|
|
|
View::set_parent_rect(new_parent_rect);
|
2016-06-06 12:50:48 -04:00
|
|
|
recent_entries_view.set_parent_rect({ 0, header_height, new_parent_rect.width(), new_parent_rect.height() - header_height });
|
2015-12-02 00:53:28 -05:00
|
|
|
}
|
|
|
|
|
2016-05-25 20:58:32 -04:00
|
|
|
void TPMSAppView::on_packet(const tpms::Packet& packet) {
|
2016-02-10 23:53:14 -05:00
|
|
|
if( logger ) {
|
|
|
|
logger->on_packet(packet, target_frequency());
|
|
|
|
}
|
2016-01-18 17:21:24 -05:00
|
|
|
|
2016-05-25 20:58:32 -04:00
|
|
|
const auto reading_opt = packet.reading();
|
2016-01-19 00:42:26 -05:00
|
|
|
if( reading_opt.is_valid() ) {
|
|
|
|
const auto reading = reading_opt.value();
|
2016-09-03 21:26:48 -04:00
|
|
|
auto& entry = ::on_packet(recent, TPMSRecentEntry::Key { reading.type(), reading.id() });
|
2016-09-03 19:38:44 -04:00
|
|
|
entry.update(reading);
|
2016-01-22 18:00:25 -05:00
|
|
|
recent_entries_view.set_dirty();
|
2016-01-18 23:43:54 -05:00
|
|
|
}
|
2015-12-02 00:53:28 -05:00
|
|
|
}
|
|
|
|
|
2016-01-22 18:00:25 -05:00
|
|
|
void TPMSAppView::on_show_list() {
|
|
|
|
recent_entries_view.hidden(false);
|
|
|
|
recent_entries_view.focus();
|
|
|
|
}
|
|
|
|
|
2016-06-21 18:36:57 -04:00
|
|
|
void TPMSAppView::on_band_changed(const uint32_t new_band_frequency) {
|
|
|
|
set_target_frequency(new_band_frequency);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TPMSAppView::set_target_frequency(const uint32_t new_value) {
|
|
|
|
target_frequency_ = new_value;
|
|
|
|
radio::set_tuning_frequency(tuning_frequency());
|
|
|
|
}
|
|
|
|
|
2016-02-10 19:31:52 -05:00
|
|
|
uint32_t TPMSAppView::target_frequency() const {
|
2016-06-21 18:36:57 -04:00
|
|
|
return target_frequency_;
|
2016-02-10 19:31:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t TPMSAppView::tuning_frequency() const {
|
|
|
|
return target_frequency() - (sampling_rate / 4);
|
|
|
|
}
|
|
|
|
|
2015-12-02 00:53:28 -05:00
|
|
|
} /* namespace ui */
|