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 __ERT_APP_H__
|
|
|
|
#define __ERT_APP_H__
|
2015-12-02 00:30:52 -05:00
|
|
|
|
2016-01-25 01:38:36 -05:00
|
|
|
#include "ui_navigation.hpp"
|
2016-07-25 19:06:09 -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
|
|
|
|
2015-12-08 19:04:48 -05:00
|
|
|
#include "ert_packet.hpp"
|
2015-12-06 18:31:17 -05:00
|
|
|
|
2016-01-24 01:24:48 -05:00
|
|
|
#include "recent_entries.hpp"
|
|
|
|
|
2015-12-06 18:31:17 -05:00
|
|
|
#include <cstddef>
|
2015-12-02 00:30:52 -05:00
|
|
|
#include <string>
|
2016-01-24 01:24:48 -05:00
|
|
|
|
2016-04-06 19:16:10 -04:00
|
|
|
struct ERTKey {
|
|
|
|
ert::ID id;
|
|
|
|
ert::CommodityType commodity_type;
|
|
|
|
|
|
|
|
constexpr ERTKey(
|
|
|
|
ert::ID id = ert::invalid_id,
|
|
|
|
ert::CommodityType commodity_type = ert::invalid_commodity_type
|
|
|
|
) : id { id },
|
|
|
|
commodity_type { commodity_type }
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ERTKey& operator=(const ERTKey& other) {
|
|
|
|
id = other.id;
|
|
|
|
commodity_type = other.commodity_type;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const ERTKey& other) const {
|
|
|
|
return (id == other.id) && (commodity_type == other.commodity_type);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-01-24 01:24:48 -05:00
|
|
|
struct ERTRecentEntry {
|
2016-04-06 19:16:10 -04:00
|
|
|
using Key = ERTKey;
|
2016-01-24 01:24:48 -05:00
|
|
|
|
|
|
|
// TODO: Is this the right choice of invalid key value?
|
2016-04-06 19:16:10 -04:00
|
|
|
static const Key invalid_key;
|
2016-01-24 01:24:48 -05:00
|
|
|
|
2016-04-06 19:16:10 -04:00
|
|
|
ert::ID id { ert::invalid_id };
|
|
|
|
ert::CommodityType commodity_type { ert::invalid_commodity_type };
|
2016-01-24 01:24:48 -05:00
|
|
|
|
|
|
|
size_t received_count { 0 };
|
|
|
|
|
|
|
|
ert::Consumption last_consumption;
|
|
|
|
|
|
|
|
ERTRecentEntry(
|
|
|
|
const Key& key
|
2016-04-06 19:16:10 -04:00
|
|
|
) : id { key.id },
|
|
|
|
commodity_type { key.commodity_type }
|
2016-01-24 01:24:48 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Key key() const {
|
2016-04-06 19:16:10 -04:00
|
|
|
return { id, commodity_type };
|
2016-01-24 01:24:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void update(const ert::Packet& packet);
|
|
|
|
};
|
2015-12-06 18:31:17 -05:00
|
|
|
|
2016-01-24 00:17:04 -05:00
|
|
|
class ERTLogger {
|
2015-12-02 00:30:52 -05:00
|
|
|
public:
|
2016-05-16 17:01:44 -04:00
|
|
|
Optional<File::Error> append(const std::string& filename) {
|
|
|
|
return log_file.append(filename);
|
|
|
|
}
|
|
|
|
|
2016-01-24 00:17:04 -05:00
|
|
|
void on_packet(const ert::Packet& packet);
|
2015-12-02 01:39:27 -05:00
|
|
|
|
|
|
|
private:
|
2016-02-10 23:53:14 -05:00
|
|
|
LogFile log_file;
|
2015-12-02 00:30:52 -05:00
|
|
|
};
|
|
|
|
|
2016-01-24 01:24:48 -05:00
|
|
|
using ERTRecentEntries = RecentEntries<ert::Packet, ERTRecentEntry>;
|
|
|
|
|
2015-12-02 00:30:52 -05:00
|
|
|
namespace ui {
|
|
|
|
|
2016-01-24 01:24:48 -05:00
|
|
|
using ERTRecentEntriesView = RecentEntriesView<ERTRecentEntries>;
|
|
|
|
|
|
|
|
class ERTAppView : public View {
|
2015-12-02 00:30:52 -05:00
|
|
|
public:
|
2016-02-10 19:31:52 -05:00
|
|
|
static constexpr uint32_t initial_target_frequency = 911600000;
|
|
|
|
static constexpr uint32_t sampling_rate = 4194304;
|
|
|
|
static constexpr uint32_t baseband_bandwidth = 2500000;
|
|
|
|
|
2016-01-25 01:38:36 -05:00
|
|
|
ERTAppView(NavigationView& nav);
|
2016-01-24 01:24:48 -05:00
|
|
|
~ERTAppView();
|
|
|
|
|
|
|
|
void set_parent_rect(const Rect new_parent_rect) override;
|
|
|
|
|
|
|
|
// 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 { };
|
2015-12-02 00:30:52 -05:00
|
|
|
|
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 "ERT"; };
|
|
|
|
|
2015-12-02 00:30:52 -05:00
|
|
|
private:
|
2016-01-24 01:24:48 -05:00
|
|
|
ERTRecentEntries recent;
|
2016-02-10 23:53:14 -05:00
|
|
|
std::unique_ptr<ERTLogger> logger;
|
2015-12-02 00:30:52 -05:00
|
|
|
|
2016-01-24 01:24:48 -05:00
|
|
|
ERTRecentEntriesView recent_entries_view { recent };
|
|
|
|
|
2016-07-25 19:06:09 -04:00
|
|
|
static constexpr auto header_height = 1 * 16;
|
|
|
|
|
|
|
|
RFAmpField field_rf_amp {
|
|
|
|
{ 13 * 8, 0 * 16 }
|
|
|
|
};
|
|
|
|
|
|
|
|
LNAGainField field_lna {
|
|
|
|
{ 15 * 8, 0 * 16 }
|
|
|
|
};
|
|
|
|
|
|
|
|
VGAGainField field_vga {
|
|
|
|
{ 18 * 8, 0 * 16 }
|
|
|
|
};
|
|
|
|
|
2016-07-25 19:12:32 -04:00
|
|
|
RSSI rssi {
|
|
|
|
{ 21 * 8, 0, 6 * 8, 4 },
|
|
|
|
};
|
|
|
|
|
2016-05-12 01:53:09 -04:00
|
|
|
MessageHandlerRegistration message_handler_packet {
|
|
|
|
Message::ID::ERTPacket,
|
|
|
|
[this](Message* const p) {
|
|
|
|
const auto message = static_cast<const ERTPacketMessage*>(p);
|
|
|
|
const ert::Packet packet { message->type, message->packet };
|
|
|
|
this->on_packet(packet);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-12-06 18:32:21 -05:00
|
|
|
void on_packet(const ert::Packet& packet);
|
2016-01-24 01:24:48 -05:00
|
|
|
void on_show_list();
|
2015-12-02 00:30:52 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace ui */
|
|
|
|
|
2015-12-08 18:28:33 -05:00
|
|
|
#endif/*__ERT_APP_H__*/
|