portapack-mayhem/firmware/application/ui_lcr.hpp

188 lines
3.5 KiB
C++
Raw Normal View History

2015-08-28 18:50:42 +00:00
/*
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
* Copyright (C) 2016 Furrtek
2015-08-28 18:50:42 +00:00
*
* 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.
*/
#include "ui.hpp"
#include "ui_widget.hpp"
#include "ui_painter.hpp"
#include "ui_menu.hpp"
#include "ui_navigation.hpp"
#include "ui_textentry.hpp"
2015-08-28 18:50:42 +00:00
#include "ui_font_fixed_8x16.hpp"
#include "clock_manager.hpp"
#include "message.hpp"
#include "rf_path.hpp"
#include "max2837.hpp"
#include "volume.hpp"
#include "transmitter_model.hpp"
namespace ui {
class LCRView : public View {
public:
LCRView(NavigationView& nav);
2015-08-28 18:50:42 +00:00
~LCRView();
std::string title() const override { return "LCR transmit"; };
2015-08-28 18:50:42 +00:00
void focus() override;
void paint(Painter& painter) override;
private:
bool txing = false;
bool scanning = false;
bool abort_scan = false;
double scan_progress;
const char RGSB_list[37][5] = {
"EAA0", "EAB0", "EAC0", "EAD0",
"EbA0", "EbB0", "EbC0", "EbD0",
"EbE0", "EbF0", "EbG0", "EbH0",
"EbI0", "EbJ0", "EbK0", "EbL0",
"EbM0", "EbN0", "EbO0", "EbP0",
"EbS0", "EAD0", "AI10", "AI20",
"AI30", "AI40", "AI50", "AI60",
"AI70", "AJ10", "AJ20", "AJ30",
"AJ40", "AJ50", "AJ60", "AJ70",
"AK10"
};
char litteral[5][8];
2015-08-28 18:50:42 +00:00
char rgsb[5];
char lcrstring[256];
char checksum = 0;
2015-08-28 18:50:42 +00:00
char lcrframe[256];
char lcrframe_f[256];
2015-09-05 18:17:43 +00:00
rf::Frequency f;
int scan_index;
void make_frame();
void start_tx();
const Style style_val {
.font = font::fixed_8x16,
.background = Color::green(),
.foreground = Color::black(),
};
const Style style_cancel {
.font = font::fixed_8x16,
.background = Color::red(),
.foreground = Color::black(),
};
Text text_recap {
2016-05-09 18:42:20 +00:00
{ 8, 6, 18 * 8, 16 },
"-"
};
2016-05-09 18:42:20 +00:00
NumberField adr_code {
{ 220, 6 },
2,
{ 0, 36 },
1,
'0'
};
2015-08-28 18:50:42 +00:00
Button button_setrgsb {
{ 16, 24, 96, 32 },
"Set RGSB"
};
Button button_txsetup {
{ 128, 24, 96, 32 },
"TX setup"
};
2015-09-05 18:17:43 +00:00
Checkbox checkbox_am_a {
{ 16, 64 },
2016-02-06 22:19:28 +00:00
0,
2015-09-05 18:17:43 +00:00
""
};
2015-08-28 18:50:42 +00:00
Button button_setam_a {
{ 48, 64, 48, 24 },
2015-08-28 18:50:42 +00:00
"AM 1"
};
2015-09-05 18:17:43 +00:00
Checkbox checkbox_am_b {
{ 16, 96 },
2016-02-06 22:19:28 +00:00
0,
2015-09-05 18:17:43 +00:00
""
};
2015-08-28 18:50:42 +00:00
Button button_setam_b {
{ 48, 96, 48, 24 },
2015-08-28 18:50:42 +00:00
"AM 2"
};
2015-09-05 18:17:43 +00:00
Checkbox checkbox_am_c {
{ 16, 128 },
2016-02-06 22:19:28 +00:00
0,
""
2015-09-05 18:17:43 +00:00
};
2015-08-28 18:50:42 +00:00
Button button_setam_c {
{ 48, 128, 48, 24 },
2015-08-28 18:50:42 +00:00
"AM 3"
};
2015-09-05 18:17:43 +00:00
Checkbox checkbox_am_d {
{ 16, 160 },
2016-02-06 22:19:28 +00:00
0,
2015-09-05 18:17:43 +00:00
""
};
2015-08-28 18:50:42 +00:00
Button button_setam_d {
{ 48, 160, 48, 24 },
2015-08-28 18:50:42 +00:00
"AM 4"
};
2015-09-05 18:17:43 +00:00
Checkbox checkbox_am_e {
{ 16, 192 },
2016-02-06 22:19:28 +00:00
0,
2015-09-05 18:17:43 +00:00
""
};
Button button_setam_e {
{ 48, 192, 48, 24 },
"AM 5"
2015-08-28 18:50:42 +00:00
};
Button button_lcrdebug {
{ 168, 216, 56, 24 },
"DEBUG"
2015-08-28 18:50:42 +00:00
};
Text text_status {
{ 16, 224, 128, 16 },
"Ready"
};
ProgressBar progress {
{ 16, 224 + 20, 208, 16 }
};
2015-08-28 18:50:42 +00:00
Button button_transmit {
{ 16, 270, 64, 32 },
"TX"
};
Button button_scan {
{ 88, 270, 64, 32 },
"SCAN"
2015-08-28 18:50:42 +00:00
};
Button button_clear {
{ 160, 270, 64, 32 },
"CLEAR"
2015-08-28 18:50:42 +00:00
};
};
} /* namespace ui */