2015-12-02 00:30:52 -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
|
|
|
#ifndef __TPMS_APP_H__
|
|
|
|
#define __TPMS_APP_H__
|
2015-12-02 00:30:52 -05:00
|
|
|
|
2016-01-25 01:38:45 -05:00
|
|
|
#include "ui_widget.hpp"
|
2016-01-25 01:38:36 -05:00
|
|
|
#include "ui_navigation.hpp"
|
2016-06-06 12:50:48 -04:00
|
|
|
#include "ui_receiver.hpp"
|
|
|
|
#include "ui_rssi.hpp"
|
|
|
|
#include "ui_channel.hpp"
|
2016-01-25 01:38:36 -05:00
|
|
|
|
2016-05-12 01:53:09 -04:00
|
|
|
#include "event_m0.hpp"
|
|
|
|
|
2015-12-02 01:39:27 -05:00
|
|
|
#include "log_file.hpp"
|
2015-12-02 00:30:52 -05:00
|
|
|
|
2016-01-22 18:00:25 -05:00
|
|
|
#include "recent_entries.hpp"
|
2016-01-18 16:54:07 -05:00
|
|
|
|
2016-04-06 20:01:54 -04:00
|
|
|
#include "tpms_packet.hpp"
|
2016-01-18 16:54:07 -05:00
|
|
|
|
2016-01-22 18:00:25 -05:00
|
|
|
namespace std {
|
|
|
|
|
|
|
|
constexpr bool operator==(const tpms::TransponderID& lhs, const tpms::TransponderID& rhs) {
|
|
|
|
return (lhs.value() == rhs.value());
|
|
|
|
}
|
|
|
|
|
|
|
|
} /* namespace std */
|
|
|
|
|
|
|
|
struct TPMSRecentEntry {
|
|
|
|
using Key = std::pair<tpms::Reading::Type, tpms::TransponderID>;
|
|
|
|
|
|
|
|
static const Key invalid_key;
|
|
|
|
|
2016-01-24 00:52:42 -05:00
|
|
|
tpms::Reading::Type type { invalid_key.first };
|
|
|
|
tpms::TransponderID id { invalid_key.second };
|
2016-01-22 18:00:25 -05:00
|
|
|
|
|
|
|
size_t received_count { 0 };
|
|
|
|
|
2016-11-26 19:50:44 -05:00
|
|
|
Optional<Pressure> last_pressure { };
|
|
|
|
Optional<Temperature> last_temperature { };
|
|
|
|
Optional<tpms::Flags> last_flags { };
|
2016-01-22 18:00:25 -05:00
|
|
|
|
|
|
|
TPMSRecentEntry(
|
|
|
|
const Key& key
|
|
|
|
) : type { key.first },
|
|
|
|
id { key.second }
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Key key() const {
|
|
|
|
return { type, id };
|
|
|
|
}
|
|
|
|
|
|
|
|
void update(const tpms::Reading& reading);
|
|
|
|
};
|
|
|
|
|
2016-09-03 19:38:44 -04:00
|
|
|
using TPMSRecentEntries = RecentEntries<TPMSRecentEntry>;
|
2016-01-22 18:00:25 -05:00
|
|
|
|
2016-01-18 17:21:24 -05:00
|
|
|
class TPMSLogger {
|
2015-12-02 00:30:52 -05:00
|
|
|
public:
|
2016-08-21 21:06:39 -04:00
|
|
|
Optional<File::Error> append(const std::filesystem::path& filename) {
|
2016-05-16 17:01:44 -04:00
|
|
|
return log_file.append(filename);
|
|
|
|
}
|
2016-02-10 23:53:14 -05:00
|
|
|
|
2016-02-10 19:31:52 -05:00
|
|
|
void on_packet(const tpms::Packet& packet, const uint32_t target_frequency);
|
2015-12-02 00:30:52 -05:00
|
|
|
|
|
|
|
private:
|
2016-11-26 19:50:44 -05:00
|
|
|
LogFile log_file { };
|
2015-12-02 00:30:52 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
2016-01-22 18:00:25 -05:00
|
|
|
using TPMSRecentEntriesView = RecentEntriesView<TPMSRecentEntries>;
|
|
|
|
|
2016-01-18 16:41:19 -05:00
|
|
|
class TPMSAppView : public View {
|
2015-12-02 00:30:52 -05:00
|
|
|
public:
|
2016-01-25 01:38:36 -05:00
|
|
|
TPMSAppView(NavigationView& nav);
|
2016-01-18 16:41:19 -05:00
|
|
|
~TPMSAppView();
|
|
|
|
|
|
|
|
void set_parent_rect(const Rect new_parent_rect) override;
|
2015-12-02 00:30:52 -05:00
|
|
|
|
2016-01-22 18:00:25 -05:00
|
|
|
// Prevent painting of region covered entirely by a child.
|
|
|
|
// TODO: Add flag to View that specifies view does not need to be cleared before painting.
|
|
|
|
void paint(Painter&) override { };
|
|
|
|
|
2016-01-27 13:18:44 -05:00
|
|
|
void focus() override;
|
|
|
|
|
2016-01-26 16:08:46 -05:00
|
|
|
std::string title() const override { return "TPMS"; };
|
|
|
|
|
2015-12-02 00:30:52 -05:00
|
|
|
private:
|
2016-02-10 19:31:52 -05:00
|
|
|
static constexpr uint32_t initial_target_frequency = 315000000;
|
|
|
|
static constexpr uint32_t sampling_rate = 2457600;
|
|
|
|
static constexpr uint32_t baseband_bandwidth = 1750000;
|
|
|
|
|
2016-05-12 01:53:09 -04:00
|
|
|
MessageHandlerRegistration message_handler_packet {
|
|
|
|
Message::ID::TPMSPacket,
|
|
|
|
[this](Message* const p) {
|
|
|
|
const auto message = static_cast<const TPMSPacketMessage*>(p);
|
2016-05-25 20:58:32 -04:00
|
|
|
const tpms::Packet packet { message->packet, message->signal_type };
|
|
|
|
this->on_packet(packet);
|
2016-05-12 01:53:09 -04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-07-25 18:29:52 -04:00
|
|
|
static constexpr ui::Dim header_height = 1 * 16;
|
2016-06-06 12:50:48 -04:00
|
|
|
|
|
|
|
RSSI rssi {
|
|
|
|
{ 21 * 8, 0, 6 * 8, 4 },
|
|
|
|
};
|
|
|
|
|
|
|
|
Channel channel {
|
|
|
|
{ 21 * 8, 5, 6 * 8, 4 },
|
|
|
|
};
|
|
|
|
|
2016-06-21 18:36:57 -04:00
|
|
|
OptionsField options_band {
|
|
|
|
{ 0 * 8, 0 * 16 },
|
|
|
|
3,
|
|
|
|
{
|
|
|
|
{ "315", 315000000 },
|
|
|
|
{ "434", 433920000 },
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-06-06 13:34:39 -04:00
|
|
|
RFAmpField field_rf_amp {
|
|
|
|
{ 13 * 8, 0 * 16 }
|
|
|
|
};
|
|
|
|
|
2016-06-06 12:50:48 -04:00
|
|
|
LNAGainField field_lna {
|
|
|
|
{ 15 * 8, 0 * 16 }
|
|
|
|
};
|
|
|
|
|
|
|
|
VGAGainField field_vga {
|
|
|
|
{ 18 * 8, 0 * 16 }
|
|
|
|
};
|
|
|
|
|
2016-11-26 19:50:44 -05:00
|
|
|
TPMSRecentEntries recent { };
|
|
|
|
std::unique_ptr<TPMSLogger> logger { };
|
2015-12-02 00:30:52 -05:00
|
|
|
|
2016-09-05 15:34:41 -04:00
|
|
|
const RecentEntriesColumns columns { {
|
|
|
|
{ "Tp", 2 },
|
|
|
|
{ "ID", 8 },
|
|
|
|
{ "kPa", 3 },
|
|
|
|
{ "C", 3 },
|
|
|
|
{ "Cnt", 3 },
|
|
|
|
{ "Fl", 2 },
|
|
|
|
} };
|
|
|
|
TPMSRecentEntriesView recent_entries_view { columns, recent };
|
2016-01-18 16:41:19 -05:00
|
|
|
|
2016-06-21 18:36:57 -04:00
|
|
|
uint32_t target_frequency_ = initial_target_frequency;
|
|
|
|
|
2016-05-25 20:58:32 -04:00
|
|
|
void on_packet(const tpms::Packet& packet);
|
2016-01-22 18:00:25 -05:00
|
|
|
void on_show_list();
|
2016-02-10 19:31:52 -05:00
|
|
|
|
2016-06-21 18:36:57 -04:00
|
|
|
void on_band_changed(const uint32_t new_band_frequency);
|
|
|
|
|
2016-02-10 19:31:52 -05:00
|
|
|
uint32_t target_frequency() const;
|
2016-06-21 18:36:57 -04:00
|
|
|
void set_target_frequency(const uint32_t new_value);
|
|
|
|
|
2016-02-10 19:31:52 -05:00
|
|
|
uint32_t tuning_frequency() const;
|
2015-12-02 00:30:52 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace ui */
|
|
|
|
|
2015-12-08 18:28:33 -05:00
|
|
|
#endif/*__TPMS_APP_H__*/
|