Started ADS-B TX UI and frame encoding

This commit is contained in:
furrtek 2016-11-30 07:41:55 +01:00
parent 57dc1f7aa4
commit bb6eefe2be
13 changed files with 489 additions and 80 deletions

View file

@ -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 {