portapack-mayhem/firmware/application/ui_lcr.cpp

436 lines
10 KiB
C++
Raw Normal View History

2015-08-28 18:50:42 +00:00
/*
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
* Copyright (C) 2016 Furrtek
2015-08-28 18:50:42 +00: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_lcr.hpp"
#include "ui_receiver.hpp"
#include "ui_afsksetup.hpp"
#include "ui_debug.hpp"
2015-08-28 18:50:42 +00:00
#include "ch.h"
#include "ff.h"
#include "baseband_api.hpp"
2015-08-28 18:50:42 +00:00
#include "hackrf_gpio.hpp"
#include "portapack.hpp"
#include "event_m0.hpp"
2015-08-28 18:50:42 +00:00
#include "string_format.hpp"
2015-08-28 18:50:42 +00:00
#include "hackrf_hal.hpp"
#include "portapack_shared_memory.hpp"
#include "portapack_persistent_memory.hpp"
2015-08-28 18:50:42 +00:00
#include <cstring>
#include <stdio.h>
using namespace portapack;
2015-08-28 18:50:42 +00:00
namespace ui {
void LCRView::focus() {
2015-09-05 18:17:43 +00:00
button_setrgsb.focus();
2015-08-28 18:50:42 +00:00
}
LCRView::~LCRView() {
transmitter_model.disable();
baseband::shutdown();
2015-08-28 18:50:42 +00:00
}
void LCRView::generate_message() {
// Modem sync and SOM
const char lcr_init[8] = { 127, 127, 127, 127, 127, 127, 127, 15 };
// Eclairage (Auto, Jour, Nuit)
const char ec_lut[3][2] = { { 'A', 0x00 },
{ 'J', 0x00 },
{ 'N', 0x00 } };
char eom[3] = { 3, 0, 0 }; // EOM and space for checksum
uint8_t i, pm, bit;
uint16_t dp;
uint8_t cp, pp, cur_byte, new_byte;
2015-08-28 18:50:42 +00:00
button_setrgsb.set_text(rgsb);
// Pad litterals to 7 chars (not required ?)
for (i = 0; i < 5; i++) {
2015-08-28 18:50:42 +00:00
while (strlen(litteral[i]) < 7) {
strcat(litteral[i], " ");
}
}
// Compose LCR message
memset(lcr_message, 0, 256);
memcpy(lcr_message, lcr_init, 8);
2016-05-09 18:42:20 +00:00
strcat(lcr_message, rgsb); // Address
strcat(lcr_message, "PA ");
2015-09-05 18:17:43 +00:00
if (checkbox_am_a.value() == true) {
strcat(lcr_message, "AM=1 AF=\"");
strcat(lcr_message, litteral[0]);
strcat(lcr_message, "\" CL=0 ");
2015-09-05 18:17:43 +00:00
}
if (checkbox_am_b.value() == true) {
strcat(lcr_message, "AM=2 AF=\"");
strcat(lcr_message, litteral[1]);
strcat(lcr_message, "\" CL=0 ");
2015-09-05 18:17:43 +00:00
}
if (checkbox_am_c.value() == true) {
strcat(lcr_message, "AM=3 AF=\"");
strcat(lcr_message, litteral[2]);
strcat(lcr_message, "\" CL=0 ");
2015-09-05 18:17:43 +00:00
}
if (checkbox_am_d.value() == true) {
strcat(lcr_message, "AM=4 AF=\"");
strcat(lcr_message, litteral[3]);
strcat(lcr_message, "\" CL=0 ");
2015-09-05 18:17:43 +00:00
}
if (checkbox_am_e.value() == true) {
strcat(lcr_message, "AM=5 AF=\"");
strcat(lcr_message, litteral[4]);
strcat(lcr_message, "\" CL=0 ");
2015-09-05 18:17:43 +00:00
}
strcat(lcr_message, "EC=");
strcat(lcr_message, ec_lut[options_ec.selected_index()]);
strcat(lcr_message, " SAB=0");
2015-08-28 18:50:42 +00:00
memcpy(lcr_string, lcr_message, 256);
// Checksum
checksum = 0;
i = 7; // Skip modem sync
while (lcr_message[i]) {
checksum ^= lcr_message[i];
2015-08-28 18:50:42 +00:00
i++;
}
checksum ^= eom[0]; // EOM char
checksum &= 0x7F; // Trim
2015-08-28 18:50:42 +00:00
eom[1] = checksum;
strcat(lcr_message, eom);
2015-08-28 18:50:42 +00:00
//if (persistent_memory::afsk_config() & 2)
2015-09-05 18:17:43 +00:00
pm = 0; // Even parity
//else
// pm = 1; // Odd parity
2015-09-05 18:17:43 +00:00
if (!(persistent_memory::afsk_config() & 8)) {
// Normal format
for (dp = 0; dp < strlen(lcr_message); dp++) {
2015-09-05 18:17:43 +00:00
pp = pm;
new_byte = 0;
cur_byte = lcr_message[dp];
for (cp = 0; cp < 7; cp++) {
bit = (cur_byte >> cp) & 1;
pp += bit;
new_byte |= (bit << (7 - cp));
2015-09-05 18:17:43 +00:00
}
lcr_message_data[dp] = new_byte | (pp & 1);
2015-09-05 18:17:43 +00:00
}
lcr_message_data[dp] = 0;
} else {
// Alt format
for (dp = 0; dp < strlen(lcr_message); dp++) {
pp = pm;
cur_byte = alt_lookup[(uint8_t)lcr_message[dp] & 0x7F];
for (cp = 0; cp < 8; cp++) {
if ((cur_byte >> cp) & 1) pp++;
}
lcr_message_data[dp * 2] = cur_byte;
lcr_message_data[(dp * 2) + 1] = pp & 1;
}
lcr_message_data[dp * 2] = 0;
}
//if (persistent_memory::afsk_config() & 1) {
// LSB first
// See above
/*} else {
2015-09-05 18:17:43 +00:00
// MSB first
for (dp=0;dp<strlen(lcr_message);dp++) {
2015-09-05 18:17:43 +00:00
pp = pm;
cur_byte = lcr_message[dp];
2015-09-05 18:17:43 +00:00
for (cp=0;cp<7;cp++) {
if ((cur_byte>>cp)&1) pp++;
}
lcr_message_data[dp] = (cur_byte<<1)|(pp&1);
}
}*/
}
void LCRView::paint(Painter& painter) {
uint8_t i;
char finalstr[24] = {0};
static constexpr Style style_orange {
.font = font::fixed_8x16,
.background = Color::black(),
.foreground = Color::orange(),
};
Point offset = {
2015-09-05 18:17:43 +00:00
static_cast<Coord>(104),
static_cast<Coord>(68)
};
for (i = 0; i < 5; i++) {
painter.draw_string(
screen_pos() + offset,
style_orange,
litteral[i]
);
offset.y += 32;
}
button_setrgsb.set_text(rgsb);
// Recap: freq @ bps / ALT
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);
strcpy(finalstr, fstr.c_str());
strcat(finalstr, "@");
strcat(finalstr, bstr.c_str());
strcat(finalstr, "bps");
if (portapack::persistent_memory::afsk_config() & 8)
strcat(finalstr, " ALT");
else
strcat(finalstr, " NRM");
text_recap.set(finalstr);
}
void LCRView::on_txdone(int n) {
char str[16];
if (abort_scan) {
text_status.set(" ");
strcpy(str, "Abort @");
strcat(str, rgsb);
text_status.set(str);
progress.set_value(0);
transmitter_model.disable();
tx_mode = IDLE;
abort_scan = false;
button_scan.set_style(&style_val);
button_scan.set_text("SCAN");
return;
}
if (n > 0) {
if (tx_mode == SCAN) {
scan_progress += 0.555f; // 100/(37*5)
progress.set_value(scan_progress);
} else {
text_status.set(" ");
strcpy(str, to_string_dec_int(6 - n).c_str());
strcat(str, "/5");
text_status.set(str);
progress.set_value((6 - n) * 20);
}
} else {
if ((tx_mode == SCAN) && (scan_index < LCR_SCAN_COUNT)) {
transmitter_model.disable();
// Next address
strcpy(rgsb, RGSB_list[scan_index]);
generate_message();
text_status.set(" ");
strcpy(str, to_string_dec_int(scan_index).c_str());
strcat(str, "/");
strcat(str, to_string_dec_uint(LCR_SCAN_COUNT).c_str());
text_status.set(str);
scan_progress += 0.694f;
progress.set_value(scan_progress);
scan_index++;
// start_tx ?
} else {
text_status.set("Ready ");
progress.set_value(0);
transmitter_model.disable();
tx_mode = IDLE;
button_scan.set_style(&style_val);
button_scan.set_text("SCAN");
}
}
}
void LCRView::start_tx(const bool scan) {
char str[16];
bool afsk_alt_format;
if (scan) {
tx_mode = SCAN;
scan_index = 0;
strcpy(rgsb, RGSB_list[0]);
} else {
tx_mode = SINGLE;
}
generate_message();
if (tx_mode == SCAN) {
text_status.set(" ");
strcpy(str, "1/");
strcat(str, to_string_dec_uint(LCR_SCAN_COUNT).c_str());
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);
}
if (portapack::persistent_memory::afsk_config() & 8)
afsk_alt_format = true;
else
afsk_alt_format = false;
transmitter_model.set_tuning_frequency(portapack::persistent_memory::tuned_frequency());
transmitter_model.set_baseband_configuration({
.mode = 0,
.sampling_rate = 2280000U,
.decimation_factor = 1,
});
transmitter_model.set_rf_amp(true);
transmitter_model.set_lna(40);
transmitter_model.set_vga(40);
transmitter_model.set_baseband_bandwidth(1750000);
transmitter_model.enable();
baseband::set_afsk_data(
lcr_message_data,
228000 / portapack::persistent_memory::afsk_bitrate(),
portapack::persistent_memory::afsk_mark_freq() * (0x40000 * 256) / 2280,
portapack::persistent_memory::afsk_space_freq() * (0x40000 * 256) / 2280,
5,
portapack::persistent_memory::afsk_bw() * 115, // See proc_fsk_lcr.cpp
afsk_alt_format
);
2015-08-28 18:50:42 +00:00
}
LCRView::LCRView(NavigationView& nav) {
baseband::run_image(portapack::spi_flash::image_tag_afsk);
memset(litteral, 0, 5 * 8);
2015-08-28 18:50:42 +00:00
memset(rgsb, 0, 5);
strcpy(rgsb, RGSB_list[0]);
2015-08-28 18:50:42 +00:00
add_children({ {
&text_recap,
&options_ec,
2015-08-28 18:50:42 +00:00
&button_setrgsb,
&button_txsetup,
2015-09-05 18:17:43 +00:00
&checkbox_am_a,
2015-08-28 18:50:42 +00:00
&button_setam_a,
2015-09-05 18:17:43 +00:00
&checkbox_am_b,
2015-08-28 18:50:42 +00:00
&button_setam_b,
2015-09-05 18:17:43 +00:00
&checkbox_am_c,
2015-08-28 18:50:42 +00:00
&button_setam_c,
2015-09-05 18:17:43 +00:00
&checkbox_am_d,
2015-08-28 18:50:42 +00:00
&button_setam_d,
2015-09-05 18:17:43 +00:00
&checkbox_am_e,
&button_setam_e,
&text_status,
&progress,
&button_lcrdebug,
2015-08-28 18:50:42 +00:00
&button_transmit,
&button_scan,
&button_clear
2015-08-28 18:50:42 +00:00
} });
button_setrgsb.set_text(rgsb);
options_ec.set_selected_index(0); // Auto
2015-09-05 18:17:43 +00:00
checkbox_am_a.set_value(true);
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 18:17:43 +00:00
button_transmit.set_style(&style_val);
button_scan.set_style(&style_val);
button_setrgsb.on_select = [this,&nav](Button&) {
textentry(nav, rgsb, 4);
2015-08-28 18:50:42 +00:00
};
button_setam_a.on_select = [this,&nav](Button&) {
textentry(nav, litteral[0], 7);
2015-08-28 18:50:42 +00:00
};
button_setam_b.on_select = [this,&nav](Button&) {
textentry(nav, litteral[1], 7);
2015-08-28 18:50:42 +00:00
};
button_setam_c.on_select = [this,&nav](Button&) {
textentry(nav, litteral[2], 7);
2015-08-28 18:50:42 +00:00
};
button_setam_d.on_select = [this,&nav](Button&) {
textentry(nav, litteral[3], 7);
2015-08-28 18:50:42 +00:00
};
button_setam_e.on_select = [this,&nav](Button&) {
textentry(nav, litteral[4], 7);
};
button_txsetup.on_select = [&nav](Button&) {
nav.push<AFSKSetupView>();
2015-08-28 18:50:42 +00:00
};
button_lcrdebug.on_select = [this,&nav](Button&) {
generate_message();
nav.push<DebugLCRView>(lcr_string, checksum);
2015-08-28 18:50:42 +00:00
};
button_transmit.on_select = [this](Button&) {
if (tx_mode == IDLE) start_tx(false);
2016-05-09 18:42:20 +00:00
};
button_scan.on_select = [this](Button&) {
if (tx_mode == IDLE) {
scan_progress = 0;
button_scan.set_style(&style_cancel);
button_scan.set_text("ABORT");
start_tx(true);
} else {
abort_scan = true;
}
};
2015-08-28 18:50:42 +00:00
button_clear.on_select = [this, &nav](Button&) {
if (tx_mode == IDLE) {
memset(litteral, 0, 5 * 8);
options_ec.set_selected_index(0);
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(false);
}
2015-08-28 18:50:42 +00:00
};
}
} /* namespace ui */