2016-01-03 01:24:30 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
|
2016-01-05 14:17:55 -05:00
|
|
|
* Copyright (C) 2016 Furrtek
|
|
|
|
*
|
2016-01-03 01:24:30 -05: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_font_fixed_8x16.hpp"
|
2016-05-27 00:48:04 -04:00
|
|
|
|
|
|
|
#include "bulb_on_bmp.hpp"
|
|
|
|
#include "bulb_off_bmp.hpp"
|
|
|
|
#include "bulb_ignore_bmp.hpp"
|
|
|
|
|
2016-01-03 01:24:30 -05:00
|
|
|
#include "clock_manager.hpp"
|
|
|
|
#include "message.hpp"
|
|
|
|
#include "rf_path.hpp"
|
|
|
|
#include "max2837.hpp"
|
|
|
|
#include "volume.hpp"
|
|
|
|
#include "transmitter_model.hpp"
|
2016-01-29 18:28:05 -05:00
|
|
|
#include "receiver_model.hpp"
|
2016-01-03 01:24:30 -05:00
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
2016-05-27 00:48:04 -04:00
|
|
|
/*
|
2016-01-29 18:28:05 -05:00
|
|
|
#define XYLOS_VOICE_ZERO 0
|
|
|
|
#define XYLOS_VOICE_HEADER 16
|
|
|
|
#define XYLOS_VOICE_RELAYS 21
|
|
|
|
#define XYLOS_VOICE_TRAILER 25
|
|
|
|
|
|
|
|
class XylosRXView : public View {
|
|
|
|
public:
|
2016-02-04 04:27:53 -05:00
|
|
|
XylosRXView(NavigationView& nav);
|
2016-01-29 18:28:05 -05:00
|
|
|
~XylosRXView();
|
|
|
|
|
|
|
|
void talk();
|
|
|
|
void on_show() override;
|
|
|
|
void focus() override;
|
|
|
|
|
|
|
|
Text text_dbg {
|
|
|
|
{ 5 * 8, 14 * 16, 20 * 8, 16 },
|
|
|
|
"--------------------"
|
|
|
|
};
|
|
|
|
|
|
|
|
void do_something(void *p);
|
|
|
|
|
|
|
|
private:
|
|
|
|
uint8_t p_idx;
|
|
|
|
const rf::Frequency xylos_freqs[7] = { 31325000, 31387500, 31437500, 31475000, 31687500, 31975000, 88000000 };
|
|
|
|
uint8_t xylos_voice_phrase[32] = { 0xFF };
|
|
|
|
const char * xylos_voice_filenames[26] = { "zero.wav",
|
|
|
|
"one.wav",
|
|
|
|
"two.wav",
|
|
|
|
"three.wav",
|
|
|
|
"four.wav",
|
|
|
|
"five.wav",
|
|
|
|
"six.wav",
|
|
|
|
"seven.wav",
|
|
|
|
"eight.wav",
|
|
|
|
"nine.wav",
|
|
|
|
"a.wav",
|
|
|
|
"b.wav",
|
|
|
|
"c.wav",
|
|
|
|
"d.wav",
|
|
|
|
"e.wav",
|
|
|
|
"f.wav",
|
|
|
|
"header.wav",
|
|
|
|
"city.wav",
|
|
|
|
"family.wav",
|
|
|
|
"subfamily.wav",
|
|
|
|
"address.wav",
|
|
|
|
"relays.wav",
|
|
|
|
"ignored.wav",
|
|
|
|
"off.wav",
|
|
|
|
"on.wav",
|
|
|
|
"trailer.wav"
|
|
|
|
};
|
|
|
|
char ccir_received[21];
|
|
|
|
|
|
|
|
Text text_title {
|
|
|
|
{ 1 * 8, 1 * 16, 11, 16 },
|
|
|
|
"BH Xylos RX"
|
|
|
|
};
|
|
|
|
|
|
|
|
Text text_city {
|
|
|
|
{ 4 * 8, 3 * 16, 11 * 8, 16 },
|
|
|
|
"Code ville:"
|
|
|
|
};
|
|
|
|
NumberField city_code {
|
|
|
|
{ 16 * 8, 3 * 16 },
|
|
|
|
2,
|
|
|
|
{ 0, 99 },
|
|
|
|
1,
|
|
|
|
' '
|
|
|
|
};
|
|
|
|
|
|
|
|
Text text_freq {
|
|
|
|
{ 5 * 8, 9 * 16, 10 * 8, 16 },
|
|
|
|
"Frequence:"
|
|
|
|
};
|
|
|
|
OptionsField options_freq {
|
|
|
|
{ 16 * 8, 9 * 16 },
|
|
|
|
7,
|
|
|
|
{
|
|
|
|
{ "31.3250", 0 },
|
|
|
|
{ "31.3875", 1 },
|
|
|
|
{ "31.4375", 2 },
|
|
|
|
{ "31.4750", 3 },
|
|
|
|
{ "31.6875", 4 },
|
|
|
|
{ "31.9750", 5 },
|
|
|
|
{ "TEST 88", 6 }
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Button button_start {
|
|
|
|
{ 2 * 8, 16 * 16, 64, 32 },
|
|
|
|
"START"
|
|
|
|
};
|
|
|
|
|
|
|
|
Button button_exit {
|
|
|
|
{ 21 * 8, 16 * 16, 64, 32 },
|
|
|
|
"Exit"
|
|
|
|
};
|
2016-05-27 00:48:04 -04:00
|
|
|
};*/
|
2016-01-29 18:28:05 -05:00
|
|
|
|
2016-01-03 01:24:30 -05:00
|
|
|
class XylosView : public View {
|
|
|
|
public:
|
2016-02-04 04:27:53 -05:00
|
|
|
XylosView(NavigationView& nav);
|
2016-01-03 01:24:30 -05:00
|
|
|
~XylosView();
|
2016-05-27 00:48:04 -04:00
|
|
|
std::string title() const override { return "Xylos transmit"; };
|
2016-01-03 01:24:30 -05:00
|
|
|
|
2016-05-27 00:48:04 -04:00
|
|
|
void start_tx();
|
2016-01-03 01:24:30 -05:00
|
|
|
void upd_message();
|
|
|
|
void focus() override;
|
|
|
|
void paint(Painter& painter) override;
|
|
|
|
|
|
|
|
private:
|
2016-05-27 00:48:04 -04:00
|
|
|
int inc_cnt;
|
|
|
|
int header_init;
|
2016-01-03 01:24:30 -05:00
|
|
|
bool txing = false;
|
2016-01-29 18:28:05 -05:00
|
|
|
const rf::Frequency xylos_freqs[7] = { 31325000, 31387500, 31437500, 31475000, 31687500, 31975000, 88000000 };
|
2016-01-03 01:24:30 -05:00
|
|
|
char ccirmessage[21];
|
|
|
|
|
2016-05-27 00:48:04 -04:00
|
|
|
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(),
|
|
|
|
};
|
|
|
|
const Style style_grey {
|
|
|
|
.font = font::fixed_8x16,
|
|
|
|
.background = Color::black(),
|
|
|
|
.foreground = Color::grey(),
|
2016-01-03 01:24:30 -05:00
|
|
|
};
|
|
|
|
|
2016-05-27 00:48:04 -04:00
|
|
|
Checkbox checkbox_hinc {
|
|
|
|
{ 21 * 8, 12},
|
|
|
|
2,
|
|
|
|
"+3"
|
2016-01-29 18:28:05 -05:00
|
|
|
};
|
|
|
|
|
2016-05-09 14:42:20 -04:00
|
|
|
Text text_header {
|
2016-05-27 00:48:04 -04:00
|
|
|
{ 8 * 8, 1 * 16, 7 * 8, 16 },
|
2016-05-09 14:42:20 -04:00
|
|
|
"Header:"
|
|
|
|
};
|
|
|
|
NumberField header_code_a {
|
2016-05-27 00:48:04 -04:00
|
|
|
{ 16 * 8, 1 * 16 },
|
2016-05-09 14:42:20 -04:00
|
|
|
2,
|
|
|
|
{ 0, 99 },
|
|
|
|
1,
|
|
|
|
'0'
|
|
|
|
};
|
|
|
|
NumberField header_code_b {
|
2016-05-27 00:48:04 -04:00
|
|
|
{ 18 * 8, 1 * 16 },
|
2016-05-09 14:42:20 -04:00
|
|
|
2,
|
|
|
|
{ 0, 99 },
|
|
|
|
1,
|
|
|
|
'0'
|
|
|
|
};
|
|
|
|
|
2016-01-03 01:24:30 -05:00
|
|
|
Text text_city {
|
2016-05-27 00:48:04 -04:00
|
|
|
{ 4 * 8, 2 * 16, 11 * 8, 16 },
|
2016-01-03 01:24:30 -05:00
|
|
|
"Code ville:"
|
|
|
|
};
|
|
|
|
NumberField city_code {
|
2016-05-27 00:48:04 -04:00
|
|
|
{ 16 * 8, 2 * 16 },
|
2016-01-03 01:24:30 -05:00
|
|
|
2,
|
|
|
|
{ 0, 99 },
|
|
|
|
1,
|
|
|
|
' '
|
|
|
|
};
|
|
|
|
|
|
|
|
Text text_family {
|
2016-05-27 00:48:04 -04:00
|
|
|
{ 7 * 8, 3 * 16, 8 * 8, 16 },
|
2016-01-03 01:24:30 -05:00
|
|
|
"Famille:"
|
|
|
|
};
|
|
|
|
NumberField family_code {
|
2016-05-27 00:48:04 -04:00
|
|
|
{ 16 * 8, 3 * 16 },
|
|
|
|
1,
|
2016-01-03 01:24:30 -05:00
|
|
|
{ 0, 9 },
|
|
|
|
1,
|
|
|
|
' '
|
|
|
|
};
|
|
|
|
|
|
|
|
Text text_subfamily {
|
2016-05-27 00:48:04 -04:00
|
|
|
{ 2 * 8, 4 * 16 + 4, 13 * 8, 16 },
|
2016-01-03 01:24:30 -05:00
|
|
|
"Sous-famille:"
|
|
|
|
};
|
|
|
|
NumberField subfamily_code {
|
2016-05-27 00:48:04 -04:00
|
|
|
{ 16 * 8, 4 * 16 + 4 },
|
|
|
|
1,
|
2016-01-03 01:24:30 -05:00
|
|
|
{ 0, 9 },
|
|
|
|
1,
|
|
|
|
' '
|
|
|
|
};
|
|
|
|
Checkbox checkbox_wcsubfamily {
|
2016-05-27 00:48:04 -04:00
|
|
|
{ 20 * 8, 4 * 16},
|
2016-02-05 11:40:14 -05:00
|
|
|
6,
|
2016-01-03 01:24:30 -05:00
|
|
|
"Toutes"
|
|
|
|
};
|
|
|
|
|
|
|
|
Text text_receiver {
|
2016-05-27 00:48:04 -04:00
|
|
|
{ 2 * 8, 6 * 16, 13 * 8, 16 },
|
2016-01-03 01:24:30 -05:00
|
|
|
"ID recepteur:"
|
|
|
|
};
|
|
|
|
NumberField receiver_code {
|
2016-05-27 00:48:04 -04:00
|
|
|
{ 16 * 8, 6 * 16 },
|
2016-01-03 01:24:30 -05:00
|
|
|
2,
|
|
|
|
{ 0, 99 },
|
|
|
|
1,
|
|
|
|
' '
|
|
|
|
};
|
|
|
|
Checkbox checkbox_wcid {
|
2016-05-27 00:48:04 -04:00
|
|
|
{ 20 * 8, 6 * 16 },
|
2016-02-05 11:40:14 -05:00
|
|
|
4,
|
2016-01-03 01:24:30 -05:00
|
|
|
"Tous"
|
|
|
|
};
|
|
|
|
|
|
|
|
Text text_freq {
|
2016-05-27 00:48:04 -04:00
|
|
|
{ 6 * 8, 8 * 16, 10 * 8, 16 },
|
2016-01-03 01:24:30 -05:00
|
|
|
"Frequence:"
|
|
|
|
};
|
|
|
|
OptionsField options_freq {
|
2016-05-27 00:48:04 -04:00
|
|
|
{ 17 * 8, 8 * 16},
|
2016-01-05 05:47:46 -05:00
|
|
|
7,
|
2016-01-03 01:24:30 -05:00
|
|
|
{
|
|
|
|
{ "31.3250", 0 },
|
|
|
|
{ "31.3875", 1 },
|
|
|
|
{ "31.4375", 2 },
|
|
|
|
{ "31.4750", 3 },
|
|
|
|
{ "31.6875", 4 },
|
2016-01-05 05:47:46 -05:00
|
|
|
{ "31.9750", 5 },
|
2016-01-29 18:28:05 -05:00
|
|
|
{ "TEST 88", 6 }
|
2016-01-03 01:24:30 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-05-27 00:48:04 -04:00
|
|
|
Text text_relais {
|
|
|
|
{ 8, 9 * 16 + 4, 7 * 8, 16 },
|
|
|
|
"Relais:"
|
2016-01-03 01:24:30 -05:00
|
|
|
};
|
2016-05-27 00:48:04 -04:00
|
|
|
|
|
|
|
ImageOptionsField options_ra {
|
|
|
|
{ 26, 166, 24, 24 },
|
2016-01-03 01:24:30 -05:00
|
|
|
{
|
2016-05-27 00:48:04 -04:00
|
|
|
{ &bulb_ignore_bmp[0], 0 },
|
|
|
|
{ &bulb_off_bmp[0], 1 },
|
|
|
|
{ &bulb_on_bmp[0], 2 }
|
2016-01-03 01:24:30 -05:00
|
|
|
}
|
|
|
|
};
|
2016-05-27 00:48:04 -04:00
|
|
|
ImageOptionsField options_rb {
|
|
|
|
{ 79, 166, 24, 24 },
|
2016-01-03 01:24:30 -05:00
|
|
|
{
|
2016-05-27 00:48:04 -04:00
|
|
|
{ &bulb_ignore_bmp[0], 0 },
|
|
|
|
{ &bulb_off_bmp[0], 1 },
|
|
|
|
{ &bulb_on_bmp[0], 2 }
|
2016-01-03 01:24:30 -05:00
|
|
|
}
|
|
|
|
};
|
2016-05-27 00:48:04 -04:00
|
|
|
ImageOptionsField options_rc {
|
|
|
|
{ 133, 166, 24, 24 },
|
|
|
|
{
|
|
|
|
{ &bulb_ignore_bmp[0], 0 },
|
|
|
|
{ &bulb_off_bmp[0], 1 },
|
|
|
|
{ &bulb_on_bmp[0], 2 }
|
|
|
|
}
|
2016-01-03 01:24:30 -05:00
|
|
|
};
|
2016-05-27 00:48:04 -04:00
|
|
|
ImageOptionsField options_rd {
|
|
|
|
{ 186, 166, 24, 24 },
|
2016-01-03 01:24:30 -05:00
|
|
|
{
|
2016-05-27 00:48:04 -04:00
|
|
|
{ &bulb_ignore_bmp[0], 0 },
|
|
|
|
{ &bulb_off_bmp[0], 1 },
|
|
|
|
{ &bulb_on_bmp[0], 2 }
|
2016-01-03 01:24:30 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-05-27 00:48:04 -04:00
|
|
|
ProgressBar progress {
|
2016-01-03 01:24:30 -05:00
|
|
|
{ 5 * 8, 13 * 16, 20 * 8, 16 },
|
|
|
|
};
|
2016-05-27 00:48:04 -04:00
|
|
|
Text text_message {
|
2016-01-03 01:24:30 -05:00
|
|
|
{ 5 * 8, 14 * 16, 20 * 8, 16 },
|
|
|
|
"--------------------"
|
|
|
|
};
|
|
|
|
|
|
|
|
Button button_transmit {
|
|
|
|
{ 2 * 8, 16 * 16, 64, 32 },
|
|
|
|
"START"
|
|
|
|
};
|
|
|
|
|
2016-01-05 05:47:46 -05:00
|
|
|
Checkbox checkbox_cligno {
|
2016-05-27 00:48:04 -04:00
|
|
|
{ 96, 16 * 16},
|
2016-02-05 11:40:14 -05:00
|
|
|
3,
|
2016-01-05 05:47:46 -05:00
|
|
|
"J/N"
|
|
|
|
};
|
2016-05-27 00:48:04 -04:00
|
|
|
NumberField tempo_cligno {
|
|
|
|
{ 104, 16 * 16 + 28 },
|
|
|
|
2,
|
|
|
|
{ 1, 99 },
|
|
|
|
1,
|
|
|
|
' '
|
|
|
|
};
|
|
|
|
Text text_cligno {
|
|
|
|
{ 104 + 16, 16 * 16 + 28, 2 * 8, 16 },
|
|
|
|
"s."
|
|
|
|
};
|
2016-01-05 05:47:46 -05:00
|
|
|
|
2016-05-27 00:48:04 -04:00
|
|
|
Button button_txtest {
|
|
|
|
{ 20 * 8, 16 * 16, 64, 32 },
|
|
|
|
"TEST"
|
2016-01-03 01:24:30 -05:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace ui */
|