mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
288 lines
8.0 KiB
C++
288 lines
8.0 KiB
C++
/*
|
|
* 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_morse.hpp"
|
|
|
|
#include "portapack.hpp"
|
|
#include "baseband_api.hpp"
|
|
#include "hackrf_gpio.hpp"
|
|
#include "portapack_shared_memory.hpp"
|
|
#include "ui_textentry.hpp"
|
|
#include "string_format.hpp"
|
|
|
|
#include <cstring>
|
|
#include <stdio.h>
|
|
|
|
using namespace portapack;
|
|
using namespace morse;
|
|
using namespace hackrf::one;
|
|
|
|
namespace ui {
|
|
|
|
static WORKING_AREA(ookthread_wa, 256);
|
|
|
|
static msg_t ookthread_fn(void* arg) {
|
|
uint32_t v = 0, delay = 0;
|
|
uint8_t* message_symbols = shared_memory.bb_data.tones_data.message;
|
|
uint8_t symbol;
|
|
MorseView* arg_c = (MorseView*)arg;
|
|
|
|
chRegSetThreadName("ookthread");
|
|
|
|
for (uint32_t i = 0; i < arg_c->symbol_count; i++) {
|
|
if (chThdShouldTerminate()) break;
|
|
|
|
symbol = message_symbols[i];
|
|
|
|
v = (symbol < 2) ? 1 : 0; // TX on for dot or dash, off for pause
|
|
delay = morse_symbols[symbol];
|
|
|
|
if (hackrf_r9) { // r9 has a common PIN 54 for MODE CONTROL TX / RX, <=r6 has two independent MODE CONTROL pins (TX and RX)
|
|
gpio_r9_rx.write(!v); // in hackrf r9 opposite logic "0" means tx , "1" rx = no tx)
|
|
} else {
|
|
gpio_og_tx.write(v); // in hackrf <=r6, "1" means tx , "0" no tx.
|
|
}
|
|
|
|
arg_c->on_tx_progress(i, false);
|
|
|
|
chThdSleepMilliseconds(delay * arg_c->time_unit_ms);
|
|
}
|
|
|
|
if (hackrf_r9) { // r9 has a common PIN 54 for MODE CONTROL TX / RX, <=r6 has two independent MODE CONTROL pins (TX and RX)
|
|
gpio_r9_rx.write(1); // Hackrf_r9 , common pin, rx="1" (we ensure TX is off) / tx="0"
|
|
} else {
|
|
gpio_og_tx.write(0); // Hackrf <=r6 independent TX / RX pins ,now touching the tx pin ==> Ensure TX is off
|
|
}
|
|
|
|
arg_c->on_tx_progress(0, true);
|
|
chThdExit(0);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static msg_t loopthread_fn(void* arg) {
|
|
MorseView* arg_c = (MorseView*)arg;
|
|
uint32_t wait = arg_c->loop;
|
|
|
|
chRegSetThreadName("loopthread");
|
|
|
|
for (uint32_t i = 0; i < wait; i++) {
|
|
if (chThdShouldTerminate()) break;
|
|
|
|
arg_c->on_loop_progress(i, false);
|
|
chThdSleepMilliseconds(1000);
|
|
}
|
|
|
|
arg_c->on_loop_progress(0, true);
|
|
chThdExit(0);
|
|
|
|
return 0;
|
|
}
|
|
|
|
void MorseView::on_set_text(NavigationView& nav) {
|
|
text_prompt(nav, buffer, 28);
|
|
}
|
|
|
|
void MorseView::focus() {
|
|
button_message.focus();
|
|
}
|
|
|
|
MorseView::~MorseView() {
|
|
transmitter_model.disable();
|
|
baseband::shutdown();
|
|
}
|
|
|
|
void MorseView::paint(Painter&) {
|
|
message = buffer;
|
|
text_message.set(message);
|
|
update_tx_duration();
|
|
}
|
|
|
|
bool MorseView::start_tx() {
|
|
// Re-generate message, just in case
|
|
update_tx_duration();
|
|
|
|
if (!symbol_count) {
|
|
nav_.display_modal("Error", "Message too long,\nmust be < 256 symbols.");
|
|
return false;
|
|
}
|
|
|
|
progressbar.set_max(symbol_count);
|
|
// By experimental spectrum measurment, we left exactly same TX LPF settings as previous fw 1.7.4, TX LPF= 1M75 (min).
|
|
transmitter_model.set_baseband_bandwidth(1'750'000); // Min TX LPF .already tested in FM morse max tone 9,999k , max dev 150khz
|
|
transmitter_model.enable();
|
|
|
|
baseband::set_tones_config(transmitter_model.channel_bandwidth(), 0, symbol_count, false, false);
|
|
|
|
if (mode_cw) {
|
|
ookthread = chThdCreateStatic(ookthread_wa, sizeof(ookthread_wa), NORMALPRIO + 10, ookthread_fn, this);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void MorseView::update_tx_duration() {
|
|
uint32_t duration_ms;
|
|
|
|
time_unit_ms = 1200 / speed;
|
|
symbol_count = morse_encode(message, time_unit_ms, tone, &time_units);
|
|
|
|
if (symbol_count) {
|
|
duration_ms = time_units * time_unit_ms;
|
|
text_tx_duration.set(to_string_dec_uint(duration_ms / 1000) + "." + to_string_dec_uint((duration_ms / 100) % 10, 1) + "s ");
|
|
} else {
|
|
text_tx_duration.set("-"); // Error
|
|
}
|
|
}
|
|
|
|
void MorseView::on_tx_progress(const uint32_t progress, const bool done) {
|
|
if (done) {
|
|
transmitter_model.disable();
|
|
progressbar.set_value(0);
|
|
|
|
if (loop && run) {
|
|
text_tx_duration.set("wait");
|
|
progressbar.set_max(loop);
|
|
progressbar.set_value(0);
|
|
|
|
if (loopthread) {
|
|
chThdRelease(loopthread);
|
|
loopthread = nullptr;
|
|
}
|
|
|
|
loopthread = chThdCreateFromHeap(NULL, 1024, NORMALPRIO, loopthread_fn, this);
|
|
} else {
|
|
tx_view.set_transmitting(false);
|
|
}
|
|
} else
|
|
progressbar.set_value(progress);
|
|
}
|
|
|
|
void MorseView::on_loop_progress(const uint32_t progress, const bool done) {
|
|
if (done) {
|
|
start_tx();
|
|
} else
|
|
progressbar.set_value(progress);
|
|
}
|
|
|
|
void MorseView::set_foxhunt(size_t i) {
|
|
message = foxhunt_codes[i - 1];
|
|
buffer = message.c_str();
|
|
text_message.set(message);
|
|
update_tx_duration();
|
|
}
|
|
|
|
MorseView::MorseView(
|
|
NavigationView& nav)
|
|
: nav_(nav) {
|
|
baseband::run_image(portapack::spi_flash::image_tag_tones);
|
|
|
|
add_children({&labels,
|
|
&checkbox_foxhunt,
|
|
&field_foxhunt,
|
|
&field_speed,
|
|
&field_tone,
|
|
&options_modulation,
|
|
&options_loop,
|
|
&text_tx_duration,
|
|
&text_message,
|
|
&button_message,
|
|
&progressbar,
|
|
&tx_view});
|
|
|
|
// Default settings
|
|
field_speed.set_value(speed);
|
|
field_tone.set_value(tone);
|
|
options_modulation.set_by_value(mode_cw);
|
|
options_loop.set_by_value(loop);
|
|
checkbox_foxhunt.set_value(foxhunt_mode);
|
|
field_foxhunt.set_value(foxhunt_code);
|
|
|
|
checkbox_foxhunt.on_select = [this](Checkbox&, bool value) {
|
|
foxhunt_mode = value;
|
|
|
|
if (foxhunt_mode)
|
|
set_foxhunt(foxhunt_code);
|
|
};
|
|
|
|
field_foxhunt.on_change = [this](int32_t value) {
|
|
foxhunt_code = value;
|
|
|
|
if (foxhunt_mode)
|
|
set_foxhunt(foxhunt_code);
|
|
};
|
|
|
|
options_modulation.on_change = [this](size_t i, int32_t value) {
|
|
(void)i; // avoid unused warning
|
|
mode_cw = (bool)value;
|
|
};
|
|
|
|
options_loop.on_change = [this](size_t i, uint32_t value) {
|
|
(void)i; // avoid unused warning
|
|
loop = value;
|
|
};
|
|
|
|
field_speed.on_change = [this](int32_t value) {
|
|
speed = value;
|
|
update_tx_duration();
|
|
};
|
|
|
|
field_tone.on_change = [this](int32_t value) {
|
|
tone = value;
|
|
};
|
|
|
|
button_message.on_select = [this, &nav](Button&) {
|
|
this->on_set_text(nav);
|
|
};
|
|
|
|
tx_view.on_edit_frequency = [this, &nav]() {
|
|
auto new_view = nav.push<FrequencyKeypadView>(transmitter_model.target_frequency());
|
|
new_view->on_changed = [this](rf::Frequency f) {
|
|
transmitter_model.set_target_frequency(f);
|
|
};
|
|
};
|
|
|
|
tx_view.on_start = [this]() {
|
|
if (start_tx()) {
|
|
run = true;
|
|
tx_view.set_transmitting(true);
|
|
}
|
|
};
|
|
|
|
tx_view.on_stop = [this]() {
|
|
run = false;
|
|
if (ookthread) chThdTerminate(ookthread);
|
|
|
|
if (loopthread) {
|
|
chThdTerminate(loopthread);
|
|
chThdWait(loopthread);
|
|
loopthread = nullptr;
|
|
}
|
|
|
|
transmitter_model.disable();
|
|
baseband::kill_tone();
|
|
tx_view.set_transmitting(false);
|
|
};
|
|
}
|
|
|
|
} /* namespace ui */
|