mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-14 09:25:30 -04:00
Started ADS-B TX UI and frame encoding
This commit is contained in:
parent
57dc1f7aa4
commit
bb6eefe2be
13 changed files with 489 additions and 80 deletions
|
@ -1,5 +1,6 @@
|
|||
/*
|
||||
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
|
||||
* Copyright (C) 2016 Furrtek
|
||||
*
|
||||
* This file is part of PortaPack.
|
||||
*
|
||||
|
@ -176,6 +177,19 @@ private:
|
|||
class ReceiverMenuView : public MenuView {
|
||||
public:
|
||||
ReceiverMenuView(NavigationView& nav);
|
||||
std::string title() const override { return "Receivers"; };
|
||||
};
|
||||
|
||||
class TransmitterCodedMenuView : public MenuView {
|
||||
public:
|
||||
TransmitterCodedMenuView(NavigationView& nav);
|
||||
std::string title() const override { return "Coded TX"; };
|
||||
};
|
||||
|
||||
class TransmitterAudioMenuView : public MenuView {
|
||||
public:
|
||||
TransmitterAudioMenuView(NavigationView& nav);
|
||||
std::string title() const override { return "Audio TX"; };
|
||||
};
|
||||
|
||||
class SystemMenuView : public MenuView {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue