2015-09-10 14:36:39 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
|
2016-12-09 12:21:47 -05:00
|
|
|
* Copyright (C) 2016 Furrtek
|
2015-09-10 14:36:39 -04: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.
|
|
|
|
*/
|
|
|
|
|
2017-07-18 14:31:05 -04:00
|
|
|
#ifndef __SIGGEN_H__
|
|
|
|
#define __SIGGEN_H__
|
|
|
|
|
2015-09-10 14:36:39 -04:00
|
|
|
#include "ui.hpp"
|
|
|
|
#include "ui_widget.hpp"
|
|
|
|
#include "ui_navigation.hpp"
|
2017-04-18 07:55:49 -04:00
|
|
|
#include "ui_transmitter.hpp"
|
2017-07-18 14:31:05 -04:00
|
|
|
|
|
|
|
#include "portapack.hpp"
|
2015-09-10 14:36:39 -04:00
|
|
|
#include "message.hpp"
|
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
2017-07-18 14:31:05 -04:00
|
|
|
class SigGenView : public View {
|
2015-09-10 14:36:39 -04:00
|
|
|
public:
|
2017-07-18 14:31:05 -04:00
|
|
|
SigGenView(NavigationView& nav);
|
|
|
|
~SigGenView();
|
2015-09-10 14:36:39 -04:00
|
|
|
|
|
|
|
void focus() override;
|
2017-04-18 07:55:49 -04:00
|
|
|
|
2020-06-28 15:42:19 -04:00
|
|
|
std::string title() const override { return "Generator"; };
|
2015-09-10 14:36:39 -04:00
|
|
|
|
|
|
|
private:
|
2017-04-18 07:55:49 -04:00
|
|
|
void start_tx();
|
2019-02-06 12:34:53 -05:00
|
|
|
void update_config();
|
2017-07-18 14:31:05 -04:00
|
|
|
void update_tone();
|
2017-09-24 15:05:42 -04:00
|
|
|
void on_tx_progress(const uint32_t progress, const bool done);
|
2017-07-18 14:31:05 -04:00
|
|
|
|
|
|
|
const std::string shape_strings[7] = {
|
|
|
|
"CW",
|
|
|
|
"Sine",
|
|
|
|
"Triangle",
|
|
|
|
"Saw up",
|
|
|
|
"Saw down",
|
|
|
|
"Square",
|
|
|
|
"Noise"
|
2017-04-18 07:55:49 -04:00
|
|
|
};
|
|
|
|
|
2017-07-18 14:31:05 -04:00
|
|
|
bool auto_update { false };
|
|
|
|
|
2017-04-18 07:55:49 -04:00
|
|
|
Labels labels {
|
2017-07-18 14:31:05 -04:00
|
|
|
{ { 6 * 8, 4 + 10 }, "Shape:", Color::light_grey() },
|
|
|
|
{ { 7 * 8, 7 * 8 }, "Tone: Hz", Color::light_grey() },
|
|
|
|
{ { 22 * 8, 15 * 8 + 4 }, "s.", Color::light_grey() },
|
|
|
|
{ { 8 * 8, 20 * 8 }, "Modulation: FM", Color::light_grey() }
|
2015-09-10 14:36:39 -04:00
|
|
|
};
|
|
|
|
|
2017-07-18 14:31:05 -04:00
|
|
|
ImageOptionsField options_shape {
|
|
|
|
{ 13 * 8, 4, 32, 32 },
|
|
|
|
Color::white(),
|
|
|
|
Color::black(),
|
|
|
|
{
|
|
|
|
{ &bitmap_sig_cw, 0 },
|
|
|
|
{ &bitmap_sig_sine, 1 },
|
|
|
|
{ &bitmap_sig_tri, 2 },
|
|
|
|
{ &bitmap_sig_saw_up, 3 },
|
|
|
|
{ &bitmap_sig_saw_down, 4 },
|
|
|
|
{ &bitmap_sig_square, 5 },
|
|
|
|
{ &bitmap_sig_noise, 6 }
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Text text_shape {
|
|
|
|
{ 18 * 8, 4 + 10, 8 * 8, 16 },
|
|
|
|
""
|
|
|
|
};
|
|
|
|
|
|
|
|
SymField symfield_tone {
|
|
|
|
{ 13 * 8, 7 * 8 },
|
2017-04-18 07:55:49 -04:00
|
|
|
5,
|
2017-07-18 14:31:05 -04:00
|
|
|
SymField::SYMFIELD_DEC
|
|
|
|
};
|
|
|
|
|
|
|
|
Button button_update {
|
|
|
|
{ 6 * 8, 10 * 8, 8 * 8, 3 * 8 },
|
|
|
|
"Update"
|
|
|
|
};
|
|
|
|
|
|
|
|
Checkbox checkbox_auto {
|
|
|
|
{ 16 * 8, 10 * 8 },
|
|
|
|
4,
|
|
|
|
"Auto"
|
2015-09-10 14:36:39 -04:00
|
|
|
};
|
|
|
|
|
2017-04-18 07:55:49 -04:00
|
|
|
Checkbox checkbox_stop {
|
2017-07-18 14:31:05 -04:00
|
|
|
{ 5 * 8, 15 * 8 },
|
2017-04-18 07:55:49 -04:00
|
|
|
10,
|
|
|
|
"Stop after"
|
2015-09-10 14:36:39 -04:00
|
|
|
};
|
|
|
|
|
2017-04-18 07:55:49 -04:00
|
|
|
NumberField field_stop {
|
2017-07-18 14:31:05 -04:00
|
|
|
{ 20 * 8, 15 * 8 + 4 },
|
2017-04-18 07:55:49 -04:00
|
|
|
2,
|
|
|
|
{ 1, 99 },
|
|
|
|
1,
|
|
|
|
' '
|
|
|
|
};
|
|
|
|
|
|
|
|
TransmitterView tx_view {
|
|
|
|
16 * 16,
|
|
|
|
10000,
|
|
|
|
12
|
|
|
|
};
|
2015-09-10 14:36:39 -04:00
|
|
|
|
2017-09-24 15:05:42 -04:00
|
|
|
MessageHandlerRegistration message_handler_tx_progress {
|
|
|
|
Message::ID::TXProgress,
|
2017-04-18 07:55:49 -04:00
|
|
|
[this](const Message* const p) {
|
2017-09-24 15:05:42 -04:00
|
|
|
const auto message = *reinterpret_cast<const TXProgressMessage*>(p);
|
|
|
|
this->on_tx_progress(message.progress, message.done);
|
2017-04-18 07:55:49 -04:00
|
|
|
}
|
2015-09-10 14:36:39 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace ui */
|
2017-07-18 14:31:05 -04:00
|
|
|
|
|
|
|
#endif/*__SIGGEN_H__*/
|