portapack-mayhem/firmware/application/tpms_app.hpp

155 lines
3.6 KiB
C++
Raw Normal View History

2015-12-02 05:30:52 +00: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.
*/
#ifndef __TPMS_APP_H__
#define __TPMS_APP_H__
2015-12-02 05:30:52 +00:00
2016-01-25 06:38:45 +00:00
#include "ui_widget.hpp"
#include "ui_navigation.hpp"
2016-06-06 16:50:48 +00:00
#include "ui_receiver.hpp"
#include "ui_rssi.hpp"
#include "ui_channel.hpp"
#include "event_m0.hpp"
#include "log_file.hpp"
2015-12-02 05:30:52 +00:00
#include "recent_entries.hpp"
2016-01-18 21:54:07 +00:00
#include "tpms_packet.hpp"
2016-01-18 21:54:07 +00: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;
tpms::Reading::Type type { invalid_key.first };
tpms::TransponderID id { invalid_key.second };
size_t received_count { 0 };
Optional<Pressure> last_pressure;
Optional<Temperature> last_temperature;
Optional<tpms::Flags> last_flags;
TPMSRecentEntry(
const Key& key
) : type { key.first },
id { key.second }
{
}
Key key() const {
return { type, id };
}
void update(const tpms::Reading& reading);
};
using TPMSRecentEntries = RecentEntries<tpms::Reading, TPMSRecentEntry>;
class TPMSLogger {
2015-12-02 05:30:52 +00:00
public:
Optional<File::Error> append(const std::string& filename) {
return log_file.append(filename);
}
void on_packet(const tpms::Packet& packet, const uint32_t target_frequency);
2015-12-02 05:30:52 +00:00
private:
LogFile log_file;
2015-12-02 05:30:52 +00:00
};
namespace ui {
using TPMSRecentEntriesView = RecentEntriesView<TPMSRecentEntries>;
2016-01-18 21:41:19 +00:00
class TPMSAppView : public View {
2015-12-02 05:30:52 +00:00
public:
TPMSAppView(NavigationView& nav);
2016-01-18 21:41:19 +00:00
~TPMSAppView();
void set_parent_rect(const Rect new_parent_rect) override;
2015-12-02 05:30:52 +00: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 18:18:44 +00:00
void focus() override;
2016-01-26 21:08:46 +00:00
std::string title() const override { return "TPMS"; };
2015-12-02 05:30:52 +00:00
private:
static constexpr uint32_t initial_target_frequency = 315000000;
static constexpr uint32_t sampling_rate = 2457600;
static constexpr uint32_t baseband_bandwidth = 1750000;
MessageHandlerRegistration message_handler_packet {
Message::ID::TPMSPacket,
[this](Message* const p) {
const auto message = static_cast<const TPMSPacketMessage*>(p);
2016-05-26 00:58:32 +00:00
const tpms::Packet packet { message->packet, message->signal_type };
this->on_packet(packet);
}
};
2016-06-06 16:50:48 +00:00
static constexpr ui::Dim header_height = 2 * 16;
RSSI rssi {
{ 21 * 8, 0, 6 * 8, 4 },
};
Channel channel {
{ 21 * 8, 5, 6 * 8, 4 },
};
LNAGainField field_lna {
{ 15 * 8, 0 * 16 }
};
VGAGainField field_vga {
{ 18 * 8, 0 * 16 }
};
TPMSRecentEntries recent;
std::unique_ptr<TPMSLogger> logger;
2015-12-02 05:30:52 +00:00
TPMSRecentEntriesView recent_entries_view { recent };
2016-01-18 21:41:19 +00:00
2016-05-26 00:58:32 +00:00
void on_packet(const tpms::Packet& packet);
void on_show_list();
uint32_t target_frequency() const;
uint32_t tuning_frequency() const;
2015-12-02 05:30:52 +00:00
};
} /* namespace ui */
#endif/*__TPMS_APP_H__*/