2015-08-28 14:50:42 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
|
2016-05-27 03:26:43 -04:00
|
|
|
* Copyright (C) 2016 Furrtek
|
2015-08-28 14:50:42 -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.
|
|
|
|
*/
|
|
|
|
|
2016-01-29 18:28:05 -05:00
|
|
|
#include "ui_alphanum.hpp"
|
2015-08-28 14:50:42 -04:00
|
|
|
#include "ui_rds.hpp"
|
|
|
|
#include "ui_lcr.hpp"
|
|
|
|
#include "ui_receiver.hpp"
|
2015-09-04 14:37:27 -04:00
|
|
|
#include "ui_afsksetup.hpp"
|
|
|
|
#include "ui_debug.hpp"
|
2015-08-28 14:50:42 -04:00
|
|
|
|
|
|
|
#include "ch.h"
|
|
|
|
|
|
|
|
#include "ff.h"
|
|
|
|
#include "hackrf_gpio.hpp"
|
|
|
|
#include "portapack.hpp"
|
2016-02-04 04:27:53 -05:00
|
|
|
#include "event_m0.hpp"
|
2015-08-28 14:50:42 -04:00
|
|
|
#include "radio.hpp"
|
|
|
|
|
2016-02-04 04:27:53 -05:00
|
|
|
#include "string_format.hpp"
|
|
|
|
|
2015-08-28 14:50:42 -04:00
|
|
|
#include "hackrf_hal.hpp"
|
|
|
|
#include "portapack_shared_memory.hpp"
|
2015-09-03 00:34:00 -04:00
|
|
|
#include "portapack_persistent_memory.hpp"
|
2015-08-28 14:50:42 -04:00
|
|
|
|
|
|
|
#include <cstring>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2016-02-04 04:27:53 -05:00
|
|
|
using namespace portapack;
|
2015-08-28 14:50:42 -04:00
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
|
|
|
void LCRView::focus() {
|
2015-09-05 14:17:43 -04:00
|
|
|
button_setrgsb.focus();
|
2015-08-28 14:50:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
LCRView::~LCRView() {
|
|
|
|
transmitter_model.disable();
|
|
|
|
}
|
|
|
|
|
2015-09-04 14:37:27 -04:00
|
|
|
void LCRView::make_frame() {
|
2015-09-05 14:17:43 -04:00
|
|
|
char eom[3] = { 3, 0, 0 }; // EOM and space for checksum
|
|
|
|
uint8_t i, pm;
|
2015-09-03 00:34:00 -04:00
|
|
|
uint16_t dp;
|
|
|
|
uint8_t cp, pp, cur_byte, new_byte;
|
2015-08-28 14:50:42 -04:00
|
|
|
|
2015-09-05 14:17:43 -04:00
|
|
|
// Pad litterals right to 7 chars (not required ?)
|
2015-09-04 14:37:27 -04:00
|
|
|
for (i = 0; i < 5; i++) {
|
2015-08-28 14:50:42 -04:00
|
|
|
while (strlen(litteral[i]) < 7) {
|
|
|
|
strcat(litteral[i], " ");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-05 14:17:43 -04:00
|
|
|
// Make LCR frame
|
2015-08-28 14:50:42 -04:00
|
|
|
memset(lcrframe, 0, 256);
|
2015-09-05 14:17:43 -04:00
|
|
|
lcrframe[0] = 127; // Modem sync
|
2015-08-28 14:50:42 -04:00
|
|
|
lcrframe[1] = 127;
|
|
|
|
lcrframe[2] = 127;
|
|
|
|
lcrframe[3] = 127;
|
|
|
|
lcrframe[4] = 127;
|
2015-09-03 00:34:00 -04:00
|
|
|
lcrframe[5] = 127;
|
|
|
|
lcrframe[6] = 127;
|
2015-09-05 14:17:43 -04:00
|
|
|
lcrframe[7] = 15; // SOM
|
2016-05-09 14:42:20 -04:00
|
|
|
|
|
|
|
button_setrgsb.set_text(rgsb);
|
|
|
|
|
2015-08-28 14:50:42 -04:00
|
|
|
strcat(lcrframe, rgsb);
|
2015-09-05 14:17:43 -04:00
|
|
|
strcat(lcrframe, "PA ");
|
|
|
|
if (checkbox_am_a.value() == true) {
|
|
|
|
strcat(lcrframe, "AM=1 AF=\"");
|
|
|
|
strcat(lcrframe, litteral[0]);
|
|
|
|
strcat(lcrframe, "\" CL=0 ");
|
|
|
|
}
|
|
|
|
if (checkbox_am_b.value() == true) {
|
|
|
|
strcat(lcrframe, "AM=2 AF=\"");
|
|
|
|
strcat(lcrframe, litteral[1]);
|
|
|
|
strcat(lcrframe, "\" CL=0 ");
|
|
|
|
}
|
|
|
|
if (checkbox_am_c.value() == true) {
|
|
|
|
strcat(lcrframe, "AM=3 AF=\"");
|
|
|
|
strcat(lcrframe, litteral[2]);
|
|
|
|
strcat(lcrframe, "\" CL=0 ");
|
|
|
|
}
|
|
|
|
if (checkbox_am_d.value() == true) {
|
|
|
|
strcat(lcrframe, "AM=4 AF=\"");
|
|
|
|
strcat(lcrframe, litteral[3]);
|
|
|
|
strcat(lcrframe, "\" CL=0 ");
|
|
|
|
}
|
|
|
|
if (checkbox_am_e.value() == true) {
|
|
|
|
strcat(lcrframe, "AM=5 AF=\"");
|
|
|
|
strcat(lcrframe, litteral[4]);
|
|
|
|
strcat(lcrframe, "\" CL=0 ");
|
|
|
|
}
|
2015-09-10 14:36:39 -04:00
|
|
|
strcat(lcrframe, "EC=A SAB=0");
|
2015-08-28 14:50:42 -04:00
|
|
|
|
2015-09-04 14:37:27 -04:00
|
|
|
memcpy(lcrstring, lcrframe, 256);
|
|
|
|
|
2015-08-28 14:50:42 -04:00
|
|
|
//Checksum
|
2015-09-04 14:37:27 -04:00
|
|
|
checksum = 0;
|
2015-09-03 00:34:00 -04:00
|
|
|
i = 7;
|
2015-08-28 14:50:42 -04:00
|
|
|
while (lcrframe[i]) {
|
|
|
|
checksum ^= lcrframe[i];
|
|
|
|
i++;
|
|
|
|
}
|
2015-09-05 14:17:43 -04:00
|
|
|
checksum ^= eom[0]; // EOM
|
2015-08-28 14:50:42 -04:00
|
|
|
checksum &= 0x7F;
|
|
|
|
eom[1] = checksum;
|
|
|
|
|
|
|
|
strcat(lcrframe, eom);
|
|
|
|
|
2015-09-10 14:36:39 -04:00
|
|
|
//if (persistent_memory::afsk_config() & 2)
|
2015-09-05 14:17:43 -04:00
|
|
|
pm = 0; // Even parity
|
2015-09-10 14:36:39 -04:00
|
|
|
//else
|
|
|
|
// pm = 1; // Odd parity
|
2015-09-05 14:17:43 -04:00
|
|
|
|
2015-09-10 14:36:39 -04:00
|
|
|
//if (persistent_memory::afsk_config() & 1) {
|
2015-09-05 14:17:43 -04:00
|
|
|
// LSB first
|
2016-05-27 03:26:43 -04:00
|
|
|
for (dp = 0; dp < strlen(lcrframe); dp++) {
|
2015-09-05 14:17:43 -04:00
|
|
|
pp = pm;
|
|
|
|
new_byte = 0;
|
|
|
|
cur_byte = lcrframe[dp];
|
2016-05-27 03:26:43 -04:00
|
|
|
for (cp = 0; cp < 7; cp++) {
|
|
|
|
if ((cur_byte >> cp) & 1) pp++;
|
|
|
|
new_byte |= (((cur_byte >> cp) & 1) << (7 - cp));
|
2015-09-05 14:17:43 -04:00
|
|
|
}
|
2016-05-27 03:26:43 -04:00
|
|
|
lcrframe_f[dp] = new_byte | (pp & 1);
|
2015-09-05 14:17:43 -04:00
|
|
|
}
|
2015-09-10 14:36:39 -04:00
|
|
|
/*} else {
|
2015-09-05 14:17:43 -04:00
|
|
|
// MSB first
|
|
|
|
for (dp=0;dp<strlen(lcrframe);dp++) {
|
|
|
|
pp = pm;
|
|
|
|
cur_byte = lcrframe[dp];
|
|
|
|
for (cp=0;cp<7;cp++) {
|
|
|
|
if ((cur_byte>>cp)&1) pp++;
|
|
|
|
}
|
2015-09-10 14:36:39 -04:00
|
|
|
lcrframe_f[dp] = (cur_byte<<1)|(pp&1);
|
2015-09-03 00:34:00 -04:00
|
|
|
}
|
2015-09-10 14:36:39 -04:00
|
|
|
}*/
|
|
|
|
|
|
|
|
lcrframe_f[dp] = 0;
|
2015-09-04 14:37:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void LCRView::paint(Painter& painter) {
|
2015-09-10 14:36:39 -04:00
|
|
|
uint8_t i;
|
|
|
|
|
2015-09-04 14:37:27 -04:00
|
|
|
static constexpr Style style_orange {
|
|
|
|
.font = font::fixed_8x16,
|
|
|
|
.background = Color::black(),
|
|
|
|
.foreground = Color::orange(),
|
|
|
|
};
|
|
|
|
|
|
|
|
Point offset = {
|
2015-09-05 14:17:43 -04:00
|
|
|
static_cast<Coord>(104),
|
2016-05-27 03:26:43 -04:00
|
|
|
static_cast<Coord>(68)
|
2015-09-04 14:37:27 -04:00
|
|
|
};
|
2015-09-03 00:34:00 -04:00
|
|
|
|
2015-09-10 14:36:39 -04:00
|
|
|
for (i = 0; i < 5; i++) {
|
|
|
|
painter.draw_string(
|
|
|
|
screen_pos() + offset,
|
|
|
|
style_orange,
|
|
|
|
litteral[i]
|
|
|
|
);
|
2016-05-27 03:26:43 -04:00
|
|
|
offset.y += 32;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LCRView::start_tx() {
|
|
|
|
char str[16];
|
|
|
|
|
|
|
|
if (scanning) {
|
|
|
|
scan_index = 0;
|
|
|
|
strcpy(rgsb, RGSB_list[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
make_frame();
|
|
|
|
|
|
|
|
transmitter_model.set_tuning_frequency(portapack::persistent_memory::tuned_frequency());
|
|
|
|
|
|
|
|
shared_memory.afsk_samples_per_bit = 228000/portapack::persistent_memory::afsk_bitrate();
|
|
|
|
shared_memory.afsk_phase_inc_mark = portapack::persistent_memory::afsk_mark_freq()*(0x40000*256)/2280;
|
|
|
|
shared_memory.afsk_phase_inc_space = portapack::persistent_memory::afsk_space_freq()*(0x40000*256)/2280;
|
|
|
|
|
|
|
|
shared_memory.afsk_fmmod = portapack::persistent_memory::afsk_bw() * 8;
|
|
|
|
|
|
|
|
memset(shared_memory.lcrdata, 0, 256);
|
|
|
|
memcpy(shared_memory.lcrdata, lcrframe_f, 256);
|
|
|
|
|
|
|
|
shared_memory.afsk_transmit_done = false;
|
|
|
|
shared_memory.afsk_repeat = 5; //(portapack::persistent_memory::afsk_config() >> 8) & 0xFF;
|
|
|
|
|
|
|
|
EventDispatcher::message_map().unregister_handler(Message::ID::TXDone);
|
|
|
|
|
|
|
|
EventDispatcher::message_map().register_handler(Message::ID::TXDone,
|
|
|
|
[this](Message* const p) {
|
|
|
|
char str[16];
|
|
|
|
|
|
|
|
if (abort_scan) {
|
|
|
|
text_status.set(" ");
|
|
|
|
strcpy(str, "Abort @");
|
|
|
|
strcat(str, rgsb);
|
|
|
|
//strcat(str, to_string_dec_int((portapack::persistent_memory::afsk_config() >> 8) & 0xFF).c_str());
|
|
|
|
text_status.set(str);
|
|
|
|
progress.set_value(0);
|
|
|
|
transmitter_model.disable();
|
|
|
|
txing = false;
|
|
|
|
scanning = false;
|
|
|
|
abort_scan = false;
|
|
|
|
button_scan.set_style(&style_val);
|
|
|
|
button_scan.set_text("SCAN");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto message = static_cast<const TXDoneMessage*>(p);
|
|
|
|
if (message->n > 0) {
|
|
|
|
if (scanning) {
|
|
|
|
scan_progress += 0.555f;
|
|
|
|
progress.set_value(scan_progress);
|
|
|
|
} else {
|
|
|
|
text_status.set(" ");
|
|
|
|
strcpy(str, to_string_dec_int(6 - message->n).c_str());
|
|
|
|
strcat(str, "/5");
|
|
|
|
//strcat(str, to_string_dec_int((portapack::persistent_memory::afsk_config() >> 8) & 0xFF).c_str());
|
|
|
|
text_status.set(str);
|
|
|
|
progress.set_value((6 - message->n) * 20);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (scanning && (scan_index < 36)) {
|
|
|
|
transmitter_model.disable();
|
|
|
|
|
|
|
|
// Next address
|
|
|
|
strcpy(rgsb, RGSB_list[scan_index]);
|
|
|
|
make_frame();
|
|
|
|
|
|
|
|
memset(shared_memory.lcrdata, 0, 256);
|
|
|
|
memcpy(shared_memory.lcrdata, lcrframe_f, 256);
|
|
|
|
shared_memory.afsk_transmit_done = false;
|
|
|
|
shared_memory.afsk_repeat = 5;
|
|
|
|
|
|
|
|
text_status.set(" ");
|
|
|
|
strcpy(str, to_string_dec_int(scan_index).c_str());
|
|
|
|
strcat(str, "/36");
|
|
|
|
text_status.set(str);
|
|
|
|
scan_progress += 0.694f;
|
|
|
|
progress.set_value(scan_progress);
|
|
|
|
|
|
|
|
scan_index++;
|
|
|
|
transmitter_model.enable();
|
|
|
|
} else {
|
|
|
|
text_status.set("Ready ");
|
|
|
|
progress.set_value(0);
|
|
|
|
transmitter_model.disable();
|
|
|
|
txing = false;
|
|
|
|
scanning = false;
|
|
|
|
button_scan.set_style(&style_val);
|
|
|
|
button_scan.set_text("SCAN");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
if (scanning) {
|
|
|
|
text_status.set(" ");
|
|
|
|
strcat(str, "1/36");
|
|
|
|
text_status.set(str);
|
|
|
|
progress.set_value(1);
|
|
|
|
scan_index++;
|
|
|
|
} else {
|
|
|
|
strcpy(str, "1/5 ");
|
|
|
|
//strcat(str, to_string_dec_int(shared_memory.afsk_repeat).c_str());
|
|
|
|
text_status.set(str);
|
|
|
|
progress.set_value(20);
|
2015-09-10 14:36:39 -04:00
|
|
|
}
|
2016-05-27 03:26:43 -04:00
|
|
|
|
|
|
|
txing = true;
|
|
|
|
transmitter_model.enable();
|
2015-08-28 14:50:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
LCRView::LCRView(
|
2016-02-04 04:27:53 -05:00
|
|
|
NavigationView& nav
|
|
|
|
)
|
2015-08-28 14:50:42 -04:00
|
|
|
{
|
2015-09-04 14:37:27 -04:00
|
|
|
char finalstr[24] = {0};
|
|
|
|
|
2016-02-04 04:27:53 -05:00
|
|
|
transmitter_model.set_baseband_configuration({
|
2016-05-09 14:42:20 -04:00
|
|
|
.mode = 3,
|
2016-02-06 17:19:28 -05:00
|
|
|
.sampling_rate = 2280000, // Is this right ?
|
2016-02-04 04:27:53 -05:00
|
|
|
.decimation_factor = 1,
|
|
|
|
});
|
|
|
|
|
2016-05-27 03:26:43 -04:00
|
|
|
memset(litteral, 0, 5 * 8);
|
2015-08-28 14:50:42 -04:00
|
|
|
memset(rgsb, 0, 5);
|
|
|
|
|
2016-05-27 03:26:43 -04:00
|
|
|
strcpy(rgsb, RGSB_list[0]);
|
2015-11-20 01:59:09 -05:00
|
|
|
button_setrgsb.set_text(rgsb);
|
2015-08-28 14:50:42 -04:00
|
|
|
|
|
|
|
add_children({ {
|
2015-09-04 14:37:27 -04:00
|
|
|
&text_recap,
|
2015-08-28 14:50:42 -04:00
|
|
|
&button_setrgsb,
|
2015-09-03 00:34:00 -04:00
|
|
|
&button_txsetup,
|
2015-09-05 14:17:43 -04:00
|
|
|
&checkbox_am_a,
|
2015-08-28 14:50:42 -04:00
|
|
|
&button_setam_a,
|
2015-09-05 14:17:43 -04:00
|
|
|
&checkbox_am_b,
|
2015-08-28 14:50:42 -04:00
|
|
|
&button_setam_b,
|
2015-09-05 14:17:43 -04:00
|
|
|
&checkbox_am_c,
|
2015-08-28 14:50:42 -04:00
|
|
|
&button_setam_c,
|
2015-09-05 14:17:43 -04:00
|
|
|
&checkbox_am_d,
|
2015-08-28 14:50:42 -04:00
|
|
|
&button_setam_d,
|
2015-09-05 14:17:43 -04:00
|
|
|
&checkbox_am_e,
|
2015-09-04 14:37:27 -04:00
|
|
|
&button_setam_e,
|
|
|
|
&text_status,
|
2016-05-27 03:26:43 -04:00
|
|
|
&progress,
|
2015-09-04 14:37:27 -04:00
|
|
|
&button_lcrdebug,
|
2015-08-28 14:50:42 -04:00
|
|
|
&button_transmit,
|
2016-05-27 03:26:43 -04:00
|
|
|
&button_scan,
|
|
|
|
&button_clear
|
2015-08-28 14:50:42 -04:00
|
|
|
} });
|
|
|
|
|
2015-09-05 14:17:43 -04:00
|
|
|
checkbox_am_a.set_value(true);
|
2016-05-27 03:26:43 -04:00
|
|
|
checkbox_am_b.set_value(false);
|
|
|
|
checkbox_am_c.set_value(false);
|
|
|
|
checkbox_am_d.set_value(false);
|
|
|
|
checkbox_am_e.set_value(false);
|
2015-09-05 14:17:43 -04:00
|
|
|
|
2015-09-04 14:37:27 -04:00
|
|
|
// Recap: tx freq @ bps
|
2015-11-18 16:01:48 -05:00
|
|
|
auto fstr = to_string_dec_int(portapack::persistent_memory::tuned_frequency() / 1000, 6);
|
|
|
|
auto bstr = to_string_dec_int(portapack::persistent_memory::afsk_bitrate(), 4);
|
2015-09-04 14:37:27 -04:00
|
|
|
strcat(finalstr, fstr.c_str());
|
|
|
|
strcat(finalstr, " @ ");
|
|
|
|
strcat(finalstr, bstr.c_str());
|
|
|
|
strcat(finalstr, "bps");
|
|
|
|
text_recap.set(finalstr);
|
|
|
|
|
|
|
|
button_transmit.set_style(&style_val);
|
2016-05-27 03:26:43 -04:00
|
|
|
button_scan.set_style(&style_val);
|
2015-09-04 14:37:27 -04:00
|
|
|
|
2016-05-27 03:26:43 -04:00
|
|
|
button_setrgsb.on_select = [this,&nav](Button&) {
|
2016-04-28 08:59:14 -04:00
|
|
|
auto an_view = nav.push<AlphanumView>(rgsb, 4);
|
2015-09-03 00:34:00 -04:00
|
|
|
an_view->on_changed = [this](char *rgsb) {
|
|
|
|
button_setrgsb.set_text(rgsb);
|
|
|
|
};
|
2015-08-28 14:50:42 -04:00
|
|
|
};
|
|
|
|
|
2016-05-27 03:26:43 -04:00
|
|
|
button_setam_a.on_select = [this,&nav](Button&) {
|
2016-04-28 08:59:14 -04:00
|
|
|
auto an_view = nav.push<AlphanumView>(litteral[0], 7);
|
2015-09-03 00:34:00 -04:00
|
|
|
an_view->on_changed = [this](char *) {};
|
2015-08-28 14:50:42 -04:00
|
|
|
};
|
2016-05-27 03:26:43 -04:00
|
|
|
button_setam_b.on_select = [this,&nav](Button&) {
|
2016-04-28 08:59:14 -04:00
|
|
|
auto an_view = nav.push<AlphanumView>(litteral[1], 7);
|
2015-09-03 00:34:00 -04:00
|
|
|
an_view->on_changed = [this](char *) {};
|
2015-08-28 14:50:42 -04:00
|
|
|
};
|
2016-05-27 03:26:43 -04:00
|
|
|
button_setam_c.on_select = [this,&nav](Button&) {
|
2016-04-28 08:59:14 -04:00
|
|
|
auto an_view = nav.push<AlphanumView>(litteral[2], 7);
|
2015-09-03 00:34:00 -04:00
|
|
|
an_view->on_changed = [this](char *) {};
|
2015-08-28 14:50:42 -04:00
|
|
|
};
|
2016-05-27 03:26:43 -04:00
|
|
|
button_setam_d.on_select = [this,&nav](Button&) {
|
2016-04-28 08:59:14 -04:00
|
|
|
auto an_view = nav.push<AlphanumView>(litteral[3], 7);
|
2015-09-03 00:34:00 -04:00
|
|
|
an_view->on_changed = [this](char *) {};
|
2015-08-28 14:50:42 -04:00
|
|
|
};
|
2016-05-27 03:26:43 -04:00
|
|
|
button_setam_e.on_select = [this,&nav](Button&) {
|
2016-04-28 08:59:14 -04:00
|
|
|
auto an_view = nav.push<AlphanumView>(litteral[4], 7);
|
2015-09-04 14:37:27 -04:00
|
|
|
an_view->on_changed = [this](char *) {};
|
|
|
|
};
|
|
|
|
|
2016-05-27 03:26:43 -04:00
|
|
|
button_txsetup.on_select = [&nav](Button&) {
|
|
|
|
nav.push<AFSKSetupView>();
|
2015-08-28 14:50:42 -04:00
|
|
|
};
|
|
|
|
|
2016-05-27 03:26:43 -04:00
|
|
|
button_lcrdebug.on_select = [this,&nav](Button&) {
|
2015-09-04 14:37:27 -04:00
|
|
|
make_frame();
|
2016-05-27 03:26:43 -04:00
|
|
|
nav.push<DebugLCRView>(lcrstring, checksum);
|
2015-08-28 14:50:42 -04:00
|
|
|
};
|
2016-05-27 03:26:43 -04:00
|
|
|
|
|
|
|
button_transmit.on_select = [this](Button&) {
|
|
|
|
if (txing == false) start_tx();
|
2016-05-09 14:42:20 -04:00
|
|
|
};
|
2016-05-27 03:26:43 -04:00
|
|
|
|
|
|
|
button_scan.on_select = [this](Button&) {
|
|
|
|
if (txing == false) {
|
|
|
|
scanning = true;
|
|
|
|
scan_progress = 0;
|
|
|
|
button_scan.set_style(&style_cancel);
|
|
|
|
button_scan.set_text("ABORT");
|
|
|
|
start_tx();
|
|
|
|
} else {
|
|
|
|
abort_scan = true;
|
|
|
|
}
|
2015-09-04 14:37:27 -04:00
|
|
|
};
|
2015-08-28 14:50:42 -04:00
|
|
|
|
2016-05-27 03:26:43 -04:00
|
|
|
button_clear.on_select = [this, &nav](Button&) {
|
|
|
|
memset(litteral, 0, 5 * 8);
|
|
|
|
checkbox_am_a.set_value(true);
|
|
|
|
checkbox_am_b.set_value(true);
|
|
|
|
checkbox_am_c.set_value(true);
|
|
|
|
checkbox_am_d.set_value(true);
|
|
|
|
checkbox_am_e.set_value(true);
|
|
|
|
set_dirty();
|
|
|
|
start_tx();
|
2015-08-28 14:50:42 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
} /* namespace ui */
|