/* * Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc. * Copyright (C) 2016 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. */ #include "ui.hpp" #include "ui_widget.hpp" #include "ui_textentry.hpp" #include "message.hpp" #include "transmitter_model.hpp" namespace ui { class LCRView : public View { public: LCRView(NavigationView& nav); ~LCRView(); void focus() override; void paint(Painter& painter) override; std::string title() const override { return "LCR transmit"; }; private: struct scan_list_t { uint8_t count; const char * addresses; }; const scan_list_t scan_list[2] = { { 36, &RGSB_list_Lille[0][0] }, { 20, &RGSB_list_Reims[0][0] } }; const char RGSB_list_Lille[36][5] = { "AI10", "AI20", "AI30", "AI40", "AI50", "AI60", "AI70", "AJ10", "AJ20", "AJ30", "AJ40", "AJ50", "AJ60", "AJ70", "AK10", "EAA0", "EAB0", "EAC0", "EAD0", "EbA0", "EbB0", "EbC0", "EbD0", "EbE0", "EbF0", "EbG0", "EbH0", "EbI0", "EbJ0", "EbK0", "EbL0", "EbM0", "EbN0", "EbO0", "EbP0", "EbS0" }; const char RGSB_list_Reims[20][5] = { "AI10", "AI20", "AI30", "AI40", "AI50", "AI60", "AI70", "AJ10", "AJ20", "AJ30", "AJ40", "AJ50", "AJ60", "AJ70", "AK10", "AK20", "AK50", "AK60", "AK70", "AP10" }; enum tx_modes { IDLE = 0, SINGLE, SCAN }; tx_modes tx_mode = IDLE; bool abort_scan = false; uint8_t scan_count, scan_index; double scan_progress; char litteral[5][8] = { { 0 }, { 0 }, { 0 }, { 0 }, { 0 } }; char rgsb[5] = { 0 }; char lcr_message[512]; char lcr_message_data[512]; char checksum = 0; rf::Frequency f; uint8_t repeat_index; void generate_message(); void update_progress(); void start_tx(const bool scan); void on_txdone(int n); void on_button_setam(NavigationView& nav, Button& button); 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(), }; std::array buttons; std::array checkboxes; std::array rectangles; Text text_recap { { 8, 6, 18 * 8, 16 }, "-" }; OptionsField options_ec { { 21 * 8, 6 }, 7, { { "EC:Auto", 0 }, { "EC:Jour", 1 }, { "EC:Nuit", 2 }, { "EC:S ? ", 3 } } }; Button button_setrgsb { { 16, 24, 96, 32 }, "Set RGSB" }; Button button_txsetup { { 128, 24, 96, 32 }, "TX setup" }; Button button_lcrdebug { { 168, 216, 56, 24 }, "DEBUG" }; Button button_clear { { 174, 64, 50, 9 * 16 }, "CLEAR" }; Text text_status { { 16, 224, 128, 16 }, "Ready" }; ProgressBar progress { { 16, 224 + 20, 208, 16 } }; Button button_transmit { { 16, 270, 64, 32 }, "TX" }; Text text_scanlist { { 88, 268, 80, 16 }, "Scan list:" }; OptionsField options_scanlist { { 88, 284 }, 6, { { "Lille ", 0 }, { "Reims ", 1 } } }; Button button_scan { { 168, 270, 56, 32 }, "SCAN" }; MessageHandlerRegistration message_handler_tx_done { Message::ID::TXDone, [this](const Message* const p) { const auto message = *reinterpret_cast(p); this->on_txdone(message.n); } }; }; } /* namespace ui */