mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
2ccda5aebd
* Initial commit - wip
* Half part of the transition of baseband processor.
* More SGD
* WIP, Weather refactor, UI improv
* Rename
* Added 4msps, and fixes
* Fixes
* princeton working
* Renamed proc_weather, bc now multifunctional
* Proto: bett
* FPS_CAME = 4,
FPS_PRASTEL = 5,
FPS_AIRFORCE = 6,
* Came Atomo, fixes
* Separate weather and sgd, bc of baseband size limit
* Fix display
* Save space
* More protos
* Dooya proto added
* More protos
* add protos
* More protos
* Move weather to ext app
* nw
* Revert "Move weather to ext app"
This reverts commit 8a84aac2f5
.
* revert
* Fix merge
* Better naming
* More protos
* More protos
* Add protos
* Fix warning
* Add NeroRadio
* more protos
* more protos
* More protos
* Shrink a bit
* fixes
* More protos
* Nicer code
* Fix naming
* Fix format
* Remove unused
* Fix some protos, that needs a LOOOONG part with the same lo/high
* Modify key calculation
172 lines
4.8 KiB
C++
172 lines
4.8 KiB
C++
/*
|
|
* Copyright (C) 2014 Jared Boone, ShareBrained Technology, Inc.
|
|
* Copyright (C) 2017 Furrtek
|
|
*
|
|
* 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 __UI_SUBGHZD_H__
|
|
#define __UI_SUBGHZD_H__
|
|
|
|
#include "ui.hpp"
|
|
#include "ui_navigation.hpp"
|
|
#include "ui_receiver.hpp"
|
|
#include "ui_freq_field.hpp"
|
|
#include "app_settings.hpp"
|
|
#include "radio_state.hpp"
|
|
#include "utility.hpp"
|
|
#include "recent_entries.hpp"
|
|
|
|
#include "../baseband/fprotos/subghztypes.hpp"
|
|
|
|
using namespace ui;
|
|
|
|
namespace ui {
|
|
|
|
struct SubGhzDRecentEntry {
|
|
using Key = uint64_t;
|
|
static constexpr Key invalid_key = 0x0fffffff;
|
|
uint8_t sensorType = FPS_Invalid;
|
|
uint8_t btn = SD_NO_BTN;
|
|
uint32_t serial = SD_NO_SERIAL;
|
|
uint16_t bits = 0;
|
|
uint16_t age = 0; // updated on each seconds, show how long the signal was last seen
|
|
uint32_t cnt = SD_NO_CNT;
|
|
uint64_t data = 0;
|
|
SubGhzDRecentEntry() {}
|
|
SubGhzDRecentEntry(
|
|
uint8_t sensorType,
|
|
uint32_t serial,
|
|
uint16_t bits = 0,
|
|
uint64_t data = 0,
|
|
uint8_t btn = SD_NO_BTN,
|
|
uint32_t cnt = SD_NO_CNT)
|
|
: sensorType{sensorType},
|
|
btn{btn},
|
|
serial{serial},
|
|
bits{bits},
|
|
cnt{cnt},
|
|
data{data} {
|
|
}
|
|
Key key() const {
|
|
return (data ^ ((static_cast<uint64_t>(serial) << 32) | (static_cast<uint64_t>(sensorType) & 0xFF) << 0));
|
|
}
|
|
void inc_age(int delta) {
|
|
if (UINT16_MAX - delta > age) age += delta;
|
|
}
|
|
void reset_age() {
|
|
age = 0;
|
|
}
|
|
};
|
|
using SubGhzDRecentEntries = RecentEntries<SubGhzDRecentEntry>;
|
|
using SubGhzDRecentEntriesView = RecentEntriesView<SubGhzDRecentEntries>;
|
|
|
|
class SubGhzDView : public View {
|
|
public:
|
|
SubGhzDView(NavigationView& nav);
|
|
~SubGhzDView();
|
|
|
|
void focus() override;
|
|
|
|
std::string title() const override { return "SubGhzD"; };
|
|
static const char* getSensorTypeName(FPROTO_SUBGHZD_SENSOR type);
|
|
static std::string pad_string_with_spaces(int snakes);
|
|
|
|
private:
|
|
void on_tick_second();
|
|
void on_data(const SubGhzDDataMessage* data);
|
|
|
|
NavigationView& nav_;
|
|
RxRadioState radio_state_{
|
|
433'920'000 /* frequency */,
|
|
1'750'000 /* bandwidth */,
|
|
4'000'000 /* sampling rate */,
|
|
ReceiverModel::Mode::AMAudio};
|
|
app_settings::SettingsManager settings_{
|
|
"rx_subghzd",
|
|
app_settings::Mode::RX,
|
|
{}};
|
|
|
|
SubGhzDRecentEntries recent{};
|
|
|
|
RFAmpField field_rf_amp{
|
|
{13 * 8, 0 * 16}};
|
|
LNAGainField field_lna{
|
|
{15 * 8, 0 * 16}};
|
|
VGAGainField field_vga{
|
|
{18 * 8, 0 * 16}};
|
|
RSSI rssi{
|
|
{21 * 8, 0, 6 * 8, 4}};
|
|
RxFrequencyField field_frequency{
|
|
{0 * 8, 0 * 16},
|
|
nav_};
|
|
|
|
SignalToken signal_token_tick_second{};
|
|
|
|
Button button_clear_list{
|
|
{0, 16, 7 * 8, 32},
|
|
"Clear"};
|
|
|
|
static constexpr auto header_height = 3 * 16;
|
|
|
|
const RecentEntriesColumns columns{{
|
|
{"Type", 19},
|
|
{"Bits", 4},
|
|
{"Age", 3},
|
|
}};
|
|
SubGhzDRecentEntriesView recent_entries_view{columns, recent};
|
|
|
|
MessageHandlerRegistration message_handler_packet{
|
|
Message::ID::SubGhzDData,
|
|
[this](Message* const p) {
|
|
const auto message = static_cast<const SubGhzDDataMessage*>(p);
|
|
this->on_data(message);
|
|
}};
|
|
};
|
|
|
|
class SubGhzDRecentEntryDetailView : public View {
|
|
public:
|
|
SubGhzDRecentEntryDetailView(NavigationView& nav, const SubGhzDRecentEntry& entry);
|
|
|
|
void update_data();
|
|
void focus() override;
|
|
|
|
private:
|
|
NavigationView& nav_;
|
|
SubGhzDRecentEntry entry_{};
|
|
Text text_type{{0 * 8, 1 * 16, 15 * 8, 16}, "?"};
|
|
Text text_id{{6 * 8, 2 * 16, 10 * 8, 16}, "?"};
|
|
|
|
Console console{
|
|
{0, 4 * 16, 240, screen_height - (4 * 16) - 36}};
|
|
|
|
Labels labels{
|
|
{{0 * 8, 0 * 16}, "Type:", Color::light_grey()},
|
|
{{0 * 8, 2 * 16}, "Serial: ", Color::light_grey()},
|
|
{{0 * 8, 3 * 16}, "Data:", Color::light_grey()},
|
|
};
|
|
|
|
Button button_done{
|
|
{screen_width - 96 - 4, screen_height - 32 - 12, 96, 32},
|
|
"Done"};
|
|
};
|
|
|
|
} // namespace ui
|
|
|
|
#endif /*__UI_SUBGHZD_H__*/
|