2016-12-09 12:21:47 -05:00
|
|
|
/*
|
|
|
|
* 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_navigation.hpp"
|
|
|
|
#include "ui_font_fixed_8x16.hpp"
|
|
|
|
|
|
|
|
#include "message.hpp"
|
|
|
|
#include "volume.hpp"
|
|
|
|
#include "audio.hpp"
|
2016-12-26 14:33:38 -05:00
|
|
|
//#include "transmitter_model.hpp"
|
|
|
|
#include "receiver_model.hpp"
|
2016-12-09 12:21:47 -05:00
|
|
|
#include "portapack.hpp"
|
|
|
|
|
|
|
|
#define MORSE_TONE_DELTA ((1536000 / 800) - 1) // 1536000/800
|
|
|
|
#define MORSE_UNIT (76800 - 1) // 1536000*0.05 (50ms)
|
|
|
|
#define MORSE_DOT 1 * MORSE_UNIT
|
|
|
|
#define MORSE_DASH 3 * MORSE_UNIT
|
|
|
|
#define MORSE_SPACE 1 * MORSE_UNIT
|
|
|
|
#define MORSE_LETTER_SPACE 3 * MORSE_UNIT
|
|
|
|
#define MORSE_WORD_SPACE 7 * MORSE_UNIT
|
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
|
|
|
class MorseView : public View {
|
|
|
|
public:
|
|
|
|
MorseView(NavigationView& nav);
|
|
|
|
~MorseView();
|
|
|
|
|
|
|
|
void focus() override;
|
|
|
|
void paint(Painter& painter) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
//rf::Frequency f;
|
|
|
|
|
|
|
|
void generate_message(char * text);
|
|
|
|
|
|
|
|
const char foxhunt_codes[11][3] = {
|
2016-12-26 14:33:38 -05:00
|
|
|
{ 'M', 'O', 'E' }, // -----.
|
|
|
|
{ 'M', 'O', 'I' }, // -----..
|
|
|
|
{ 'M', 'O', 'S' }, // -----...
|
|
|
|
{ 'M', 'O', 'H' }, // -----....
|
|
|
|
{ 'M', 'O', '5' }, // -----.....
|
|
|
|
{ 'M', 'O', 'N' }, // ------.
|
|
|
|
{ 'M', 'O', 'D' }, // ------..
|
|
|
|
{ 'M', 'O', 'B' }, // ------...
|
|
|
|
{ 'M', 'O', '6' }, // ------....
|
|
|
|
{ 'M', 'O', 0 }, // -----
|
|
|
|
{ 'S', 0, 0 } // ...
|
2016-12-09 12:21:47 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
// 0=dot 1=dash
|
|
|
|
const uint8_t morse_ITU[36] = {
|
|
|
|
// Code Size
|
|
|
|
0b11111101, // 0: 11111 101
|
|
|
|
0b01111101, // 1: 01111 101
|
|
|
|
0b00111101, // 2: 00111 101
|
|
|
|
0b00011101, // 3: 00011 101
|
|
|
|
0b00001101, // 4: 00001 101
|
|
|
|
0b00000101, // 5: 00000 101
|
|
|
|
0b10000101, // 6: 10000 101
|
|
|
|
0b11000101, // 7: 11000 101
|
|
|
|
0b11100101, // 8: 11100 101
|
|
|
|
0b11110101, // 9: 11110 101
|
|
|
|
0b01000010, // A: 01--- 010
|
|
|
|
0b10000100, // B: 1000- 100
|
|
|
|
0b10100100, // C: 1010- 100
|
|
|
|
0b10000011, // D: 100-- 011
|
|
|
|
0b00000001, // E: 0---- 001
|
|
|
|
0b00100100, // F: 0010- 100
|
|
|
|
0b11000011, // G: 110-- 011
|
|
|
|
0b00000100, // H: 0000- 100
|
|
|
|
0b00000010, // I: 00--- 010
|
|
|
|
0b01110100, // J: 0111- 100
|
|
|
|
0b10100011, // K: 101-- 011
|
|
|
|
0b01000100, // L: 0100- 100
|
|
|
|
0b11000010, // M: 11--- 010
|
|
|
|
0b10000010, // N: 10--- 010
|
|
|
|
0b11100011, // O: 111-- 011
|
|
|
|
0b01100100, // P: 0110- 100 .#-###-###.# ##.#-### ##.#-###.# ##.#.# ##.#.#.# = 48 units
|
|
|
|
0b11010100, // Q: 1101- 100 60s: 1.25s/unit
|
|
|
|
0b01000011, // R: 010-- 011 75s: 1.5625s/unit
|
|
|
|
0b00000011, // S: 000-- 011
|
|
|
|
0b10000001, // T: 1---- 001
|
|
|
|
0b00100011, // U: 001-- 011
|
|
|
|
0b00010100, // V: 0001- 100
|
|
|
|
0b01100011, // W: 011-- 011
|
|
|
|
0b10010100, // X: 1001- 100
|
|
|
|
0b10110100, // Y: 1011- 100
|
|
|
|
0b11000100 // Z: 1100- 100
|
|
|
|
};
|
|
|
|
|
|
|
|
const uint16_t morse_special[23] = {
|
|
|
|
// Code Size
|
|
|
|
0b1010110000000110, // !: 101011- 110
|
|
|
|
0b0100100000000110, // ": 010010- 110
|
|
|
|
0, // #
|
|
|
|
0b0001001000000111, // $: 0001001 111
|
|
|
|
0, // %
|
|
|
|
0b0100000000000101, // &: 01000-- 101
|
|
|
|
0b0111100000000110, // ': 011110- 110
|
|
|
|
0b1011000000000101, // (: 10110-- 101
|
|
|
|
0b1011010000000110, // ): 101101- 110
|
|
|
|
0, // *
|
|
|
|
0b0101000000000101, // +: 01010-- 101
|
|
|
|
0b1100110000000110, // ,: 110011- 110
|
|
|
|
0b1000010000000110, // -: 100001- 110
|
|
|
|
0b0101010000000110, // .: 010101- 110
|
|
|
|
0b1001000000000101, // /: 10010-- 101
|
|
|
|
|
|
|
|
0b1110000000000110, // :: 111000- 110
|
|
|
|
0b1010100000000110, // ;: 101010- 110
|
|
|
|
0, // <
|
|
|
|
0b1000100000000101, // =: 10001-- 101
|
|
|
|
0, // >
|
|
|
|
0b0011000000000110, // ?: 001100- 110
|
|
|
|
0b0110100000000110, // @: 011010- 110
|
|
|
|
|
|
|
|
0b0011010000000110 // _: 001101- 110
|
|
|
|
};
|
|
|
|
|
|
|
|
const uint16_t prosigns[12] = {
|
|
|
|
// Code Size
|
|
|
|
0b0001110000001001, // <SOS>: 000111000 1001
|
|
|
|
0b0101000000000100, // <AA>: 0101----- 0100
|
|
|
|
0b0101000000000101, // <AR>: 01010---- 0101
|
|
|
|
0b0100000000000101, // <AS>: 01000---- 0101
|
|
|
|
0b1000100000000101, // <BT>: 10001---- 0101
|
|
|
|
0b1010100000000101, // <CT>: 10101---- 0101
|
|
|
|
0b0000000000001000, // <HH>: 00000000- 1000
|
|
|
|
0b1010000000000011, // <K>: 101------ 0011
|
|
|
|
0b1011000000000101, // <KN>: 10110---- 0101
|
|
|
|
0b1001110000000110, // <NJ>: 100111--- 0110
|
|
|
|
0b0001010000000110, // <SK>: 000101--- 0110
|
|
|
|
0b0001100000000101, // <SN>: 00010---- 0101
|
|
|
|
};
|
|
|
|
|
2016-12-26 14:33:38 -05:00
|
|
|
/*Text text_status {
|
|
|
|
{ 172, 196, 64, 16 },
|
|
|
|
"Foxhunt code:"
|
|
|
|
};*/
|
|
|
|
|
|
|
|
Checkbox checkbox_foxhunt {
|
|
|
|
{ 4 * 8, 24 },
|
|
|
|
8,
|
|
|
|
"Foxhunt:"
|
|
|
|
};
|
2016-12-09 12:21:47 -05:00
|
|
|
OptionsField options_foxhunt {
|
2016-12-26 14:33:38 -05:00
|
|
|
{ 18 * 8, 32 },
|
2016-12-09 12:21:47 -05:00
|
|
|
7,
|
|
|
|
{
|
|
|
|
{ "0 (MOE)", 0 },
|
|
|
|
{ "1 (MOI)", 1 },
|
|
|
|
{ "2 (MOS)", 2 },
|
|
|
|
{ "3 (MOH)", 3 },
|
|
|
|
{ "4 (MO5)", 4 },
|
|
|
|
{ "5 (MON)", 5 },
|
|
|
|
{ "6 (MOD)", 6 },
|
|
|
|
{ "7 (MOB)", 7 },
|
|
|
|
{ "8 (MO6)", 8 },
|
|
|
|
{ "9 (MO)", 9 },
|
|
|
|
{ "10 (S)", 10 }
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Button button_transmit {
|
2016-12-26 14:33:38 -05:00
|
|
|
{ 24, 260, 64, 32 },
|
2016-12-09 12:21:47 -05:00
|
|
|
"TX"
|
|
|
|
};
|
|
|
|
|
|
|
|
Button button_exit {
|
2016-12-26 14:33:38 -05:00
|
|
|
{ 160, 260, 64, 32 },
|
2016-12-09 12:21:47 -05:00
|
|
|
"Exit"
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace ui */
|