portapack-mayhem/firmware/application/apps/ui_morse.hpp

193 lines
3.9 KiB
C++
Raw Normal View History

/*
* 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.
*/
2017-02-13 23:24:42 +00:00
#ifndef __MORSE_TX_H__
#define __MORSE_TX_H__
#include "ui.hpp"
#include "ui_widget.hpp"
#include "ui_navigation.hpp"
2017-02-13 23:24:42 +00:00
#include "ui_transmitter.hpp"
2017-02-13 23:24:42 +00:00
#include "portapack.hpp"
#include "message.hpp"
#include "volume.hpp"
#include "audio.hpp"
2017-02-13 23:24:42 +00:00
#include "morse.hpp"
2017-02-14 17:16:59 +00:00
#include <ch.h>
2017-02-13 23:24:42 +00:00
using namespace morse;
namespace ui {
class MorseView : public View {
public:
MorseView(NavigationView& nav);
~MorseView();
2017-02-14 17:16:59 +00:00
MorseView(const MorseView&) = delete;
MorseView(MorseView&&) = delete;
MorseView& operator=(const MorseView&) = delete;
MorseView& operator=(MorseView&&) = delete;
void focus() override;
void paint(Painter& painter) override;
void on_tx_progress(const uint32_t progress, const bool done);
2020-09-22 13:12:46 +00:00
void on_loop_progress(const uint32_t progress, const bool done);
2017-02-15 03:05:38 +00:00
std::string title() const override { return "Morse TX"; };
2017-02-14 17:16:59 +00:00
uint32_t time_unit_ms { 0 };
size_t symbol_count { 0 };
2020-09-22 13:12:46 +00:00
uint32_t loop { 0 };
private:
2017-02-13 23:24:42 +00:00
NavigationView& nav_;
std::string buffer { "PORTAPACK" };
2017-02-14 17:16:59 +00:00
std::string message { };
uint32_t time_units { 0 };
enum modulation_t {
CW = 0,
FM = 1
};
modulation_t modulation { CW };
2017-02-13 23:24:42 +00:00
bool start_tx();
void update_tx_duration();
2017-02-14 17:16:59 +00:00
void on_set_text(NavigationView& nav);
void set_foxhunt(size_t i);
Thread * ookthread { nullptr };
2020-09-22 13:12:46 +00:00
Thread * loopthread { nullptr };
bool foxhunt_mode { false };
2020-09-22 13:12:46 +00:00
bool run { false };
2017-02-14 17:16:59 +00:00
Labels labels {
2020-09-22 08:46:44 +00:00
{ { 4 * 8, 6 * 8 }, "Speed: wps", Color::light_grey() },
2017-02-14 17:16:59 +00:00
{ { 4 * 8, 8 * 8 }, "Tone: Hz", Color::light_grey() },
{ { 4 * 8, 10 * 8 }, "Modulation:", Color::light_grey() },
2020-09-22 13:12:46 +00:00
{ { 4 * 8, 12 * 8 }, "Loop:", Color::light_grey() },
{ { 1 * 8, 25 * 8 }, "TX will last", Color::light_grey() }
};
2016-12-26 19:33:38 +00:00
Checkbox checkbox_foxhunt {
2017-02-13 23:24:42 +00:00
{ 4 * 8, 16 },
2016-12-26 19:33:38 +00:00
8,
"Foxhunt:"
};
OptionsField options_foxhunt {
2017-02-13 23:24:42 +00:00
{ 17 * 8, 16 + 4 },
7,
{
{ "1 (MOE)", 0 },
{ "2 (MOI)", 1 },
{ "3 (MOS)", 2 },
{ "4 (MOH)", 3 },
{ "5 (MO5)", 4 },
{ "6 (MON)", 5 },
{ "7 (MOD)", 6 },
{ "8 (MOB)", 7 },
{ "9 (MO6)", 8 },
{ "X (MO) ", 9 },
{ "T (S) ", 10 }
}
};
2020-09-22 08:46:44 +00:00
NumberField field_speed {
{ 10 * 8, 6 * 8 },
2017-02-14 17:16:59 +00:00
3,
2020-09-22 08:46:44 +00:00
{ 10, 45 },
2017-02-14 17:16:59 +00:00
1,
' '
};
NumberField field_tone {
{ 9 * 8, 8 * 8 },
4,
{ 100, 9999 },
20,
' '
};
OptionsField options_modulation {
{ 15 * 8, 10 * 8 },
2,
{
{ "CW", 0 },
{ "FM", 1 }
}
};
2020-09-22 13:12:46 +00:00
OptionsField options_loop {
{ 9 * 8, 12 * 8 },
6,
{
{ "Off", 0 },
{ "5 sec", 5 },
{ "10 sec", 10 },
{ "30 sec", 30 },
{ "1 min", 60 },
{ "3 min", 180 },
{ "5 min", 300 }
}
};
2017-02-14 17:16:59 +00:00
Text text_tx_duration {
{ 14 * 8, 25 * 8, 4 * 8, 16 },
"-"
};
2017-02-14 17:16:59 +00:00
Text text_message {
{ 1 * 8, 15 * 8, 28 * 8, 16 },
2017-02-14 17:16:59 +00:00
""
};
Button button_message {
{ 1 * 8, 17 * 8, 12 * 8, 28 },
2017-02-14 17:16:59 +00:00
"Set message"
};
2017-02-13 23:24:42 +00:00
ProgressBar progressbar {
{ 2 * 8, 28 * 8, 208, 16 }
};
2017-02-13 23:24:42 +00:00
TransmitterView tx_view {
16 * 16,
10000,
12
};
MessageHandlerRegistration message_handler_tx_progress {
Message::ID::TXProgress,
[this](const Message* const p) {
const auto message = *reinterpret_cast<const TXProgressMessage*>(p);
2017-02-13 23:24:42 +00:00
this->on_tx_progress(message.progress, message.done);
}
};
};
} /* namespace ui */
2017-02-13 23:24:42 +00:00
#endif/*__MORSE_TX_H__*/