2015-09-04 14:37:27 -04:00
|
|
|
/*
|
2016-08-02 06:44:31 -04:00
|
|
|
* Copyright (C) 2014 Jared Boone, ShareBrained Technology, Inc.
|
|
|
|
* Copyright (C) 2016 Furrtek
|
2015-09-04 14:37:27 -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-04-21 01:22:31 -04:00
|
|
|
#include "modems.hpp"
|
2017-04-24 13:15:57 -04:00
|
|
|
#include "serializer.hpp"
|
2016-08-02 06:44:31 -04:00
|
|
|
|
2015-09-04 14:37:27 -04:00
|
|
|
#include "ui.hpp"
|
|
|
|
#include "ui_widget.hpp"
|
|
|
|
#include "ui_navigation.hpp"
|
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
2017-04-24 13:15:57 -04:00
|
|
|
class ModemSetupView : public View {
|
2015-09-04 14:37:27 -04:00
|
|
|
public:
|
2017-04-24 13:15:57 -04:00
|
|
|
ModemSetupView(NavigationView& nav);
|
2015-09-04 14:37:27 -04:00
|
|
|
|
|
|
|
void focus() override;
|
2016-08-02 06:44:31 -04:00
|
|
|
|
2017-04-24 13:15:57 -04:00
|
|
|
std::string title() const override { return "Modem setup"; };
|
2015-09-04 14:37:27 -04:00
|
|
|
|
|
|
|
private:
|
2016-08-02 06:44:31 -04:00
|
|
|
void update_freq(rf::Frequency f);
|
2015-09-04 14:37:27 -04:00
|
|
|
|
2017-02-12 02:23:31 -05:00
|
|
|
Labels labels {
|
2017-09-02 03:28:29 -04:00
|
|
|
{ { 2 * 8, 11 * 8 }, "Baudrate:", Color::light_grey() },
|
2017-02-12 02:23:31 -05:00
|
|
|
{ { 2 * 8, 13 * 8 }, "Mark: Hz", Color::light_grey() },
|
|
|
|
{ { 2 * 8, 15 * 8 }, "Space: Hz", Color::light_grey() },
|
|
|
|
{ { 140, 15 * 8 }, "Repeat:", Color::light_grey() },
|
2017-09-02 03:28:29 -04:00
|
|
|
{ { 1 * 8, 6 * 8 }, "Modem preset:", Color::light_grey() },
|
2017-04-21 01:22:31 -04:00
|
|
|
{ { 2 * 8, 22 * 8 }, "Serial format:", Color::light_grey() }
|
2016-08-02 06:44:31 -04:00
|
|
|
};
|
2017-02-12 02:23:31 -05:00
|
|
|
|
2017-04-21 01:22:31 -04:00
|
|
|
NumberField field_baudrate {
|
2017-09-02 03:28:29 -04:00
|
|
|
{ 11 * 8, 11 * 8 },
|
2017-04-21 01:22:31 -04:00
|
|
|
5,
|
|
|
|
{ 50, 9600 },
|
|
|
|
25,
|
|
|
|
' '
|
2015-09-04 14:37:27 -04:00
|
|
|
};
|
2017-02-12 02:23:31 -05:00
|
|
|
|
2015-09-04 14:37:27 -04:00
|
|
|
NumberField field_mark {
|
2017-09-02 03:28:29 -04:00
|
|
|
{ 8 * 8, 13 * 8 },
|
2015-09-04 14:37:27 -04:00
|
|
|
5,
|
2016-05-11 17:57:22 -04:00
|
|
|
{ 100, 15000 },
|
2015-09-16 09:43:43 -04:00
|
|
|
25,
|
2015-09-04 14:37:27 -04:00
|
|
|
' '
|
|
|
|
};
|
|
|
|
|
|
|
|
NumberField field_space {
|
2017-09-02 03:28:29 -04:00
|
|
|
{ 8 * 8, 15 * 8 },
|
2015-09-04 14:37:27 -04:00
|
|
|
5,
|
2016-05-11 17:57:22 -04:00
|
|
|
{ 100, 15000 },
|
2015-09-16 09:43:43 -04:00
|
|
|
25,
|
|
|
|
' '
|
|
|
|
};
|
|
|
|
|
|
|
|
NumberField field_repeat {
|
2017-09-02 03:28:29 -04:00
|
|
|
{ 204, 15 * 8 },
|
2015-09-16 09:43:43 -04:00
|
|
|
2,
|
|
|
|
{ 1, 99 },
|
|
|
|
1,
|
2015-09-04 14:37:27 -04:00
|
|
|
' '
|
|
|
|
};
|
|
|
|
|
2017-04-21 01:22:31 -04:00
|
|
|
OptionsField options_modem {
|
2017-09-02 03:28:29 -04:00
|
|
|
{ 15 * 8, 6 * 8 },
|
2017-04-21 01:22:31 -04:00
|
|
|
7,
|
2016-08-02 06:44:31 -04:00
|
|
|
{
|
|
|
|
}
|
2015-09-05 14:17:43 -04:00
|
|
|
};
|
|
|
|
|
2017-04-21 01:22:31 -04:00
|
|
|
SymField sym_format {
|
|
|
|
{ 16 * 8, 22 * 8 },
|
|
|
|
4,
|
|
|
|
SymField::SYMFIELD_DEF
|
|
|
|
};
|
|
|
|
|
|
|
|
Button button_set_modem {
|
2017-09-02 03:28:29 -04:00
|
|
|
{ 23 * 8, 6 * 8 - 4, 6 * 8, 24 },
|
2017-04-21 01:22:31 -04:00
|
|
|
"SET"
|
|
|
|
};
|
|
|
|
|
2016-08-02 06:44:31 -04:00
|
|
|
Button button_save {
|
2017-09-02 03:28:29 -04:00
|
|
|
{ 9 * 8, 250, 96, 40 },
|
2015-09-04 14:37:27 -04:00
|
|
|
"Save"
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace ui */
|