2016-08-02 22:53:51 -04: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_encoders.hpp"
|
|
|
|
|
|
|
|
#include "baseband_api.hpp"
|
|
|
|
#include "string_format.hpp"
|
2022-08-27 11:47:24 -04:00
|
|
|
#include "cpld_update.hpp"
|
2016-08-02 22:53:51 -04:00
|
|
|
|
|
|
|
using namespace portapack;
|
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
2017-08-28 17:17:02 -04:00
|
|
|
EncodersConfigView::EncodersConfigView(
|
2023-05-18 16:16:05 -04:00
|
|
|
NavigationView&,
|
|
|
|
Rect parent_rect) {
|
|
|
|
using option_t = std::pair<std::string, int32_t>;
|
|
|
|
std::vector<option_t> enc_options;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
set_parent_rect(parent_rect);
|
|
|
|
hidden(true);
|
|
|
|
|
|
|
|
// Default encoder def
|
|
|
|
encoder_def = &encoder_defs[0];
|
|
|
|
|
|
|
|
add_children({&labels,
|
|
|
|
&options_enctype,
|
|
|
|
&field_repeat_min,
|
|
|
|
&field_clk,
|
|
|
|
&field_clk_step,
|
|
|
|
&field_frameduration,
|
|
|
|
&field_frameduration_step,
|
|
|
|
&symfield_word,
|
|
|
|
&text_format,
|
|
|
|
&waveform});
|
|
|
|
|
|
|
|
// Load encoder types in option field
|
|
|
|
for (i = 0; i < ENC_TYPES_COUNT; i++)
|
|
|
|
enc_options.emplace_back(std::make_pair(encoder_defs[i].name, i));
|
|
|
|
|
|
|
|
options_enctype.on_change = [this](size_t index, int32_t) {
|
|
|
|
on_type_change(index);
|
|
|
|
};
|
|
|
|
|
|
|
|
options_enctype.set_options(enc_options);
|
|
|
|
options_enctype.set_selected_index(0);
|
|
|
|
|
|
|
|
symfield_word.on_change = [this]() {
|
|
|
|
generate_frame();
|
|
|
|
};
|
|
|
|
|
|
|
|
// Selecting input clock changes symbol and word duration
|
|
|
|
field_clk.on_change = [this](int32_t value) {
|
|
|
|
// value is in kHz, new_value is in us
|
|
|
|
int32_t new_value = (encoder_def->clk_per_symbol * 1000000) / (value * 1000);
|
|
|
|
if (new_value != field_frameduration.value())
|
|
|
|
field_frameduration.set_value(new_value * encoder_def->word_length, false);
|
|
|
|
};
|
|
|
|
|
|
|
|
field_clk_step.on_change = [this](size_t, int32_t value) {
|
|
|
|
field_clk.set_step(value);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Selecting word duration changes input clock and symbol duration
|
|
|
|
field_frameduration.on_change = [this](int32_t value) {
|
|
|
|
// value is in us, new_value is in kHz
|
|
|
|
int32_t new_value = (value * 1000) / (encoder_def->word_length * encoder_def->clk_per_symbol);
|
|
|
|
if (new_value != field_clk.value())
|
|
|
|
field_clk.set_value(1000000 / new_value, false);
|
|
|
|
};
|
|
|
|
|
|
|
|
field_frameduration_step.on_change = [this](size_t, int32_t value) {
|
|
|
|
field_frameduration.set_step(value);
|
|
|
|
};
|
2016-08-02 22:53:51 -04:00
|
|
|
}
|
|
|
|
|
2017-08-28 17:17:02 -04:00
|
|
|
void EncodersConfigView::focus() {
|
2023-05-18 16:16:05 -04:00
|
|
|
options_enctype.focus();
|
2016-08-02 22:53:51 -04:00
|
|
|
}
|
|
|
|
|
2017-08-28 17:17:02 -04:00
|
|
|
void EncodersConfigView::on_type_change(size_t index) {
|
2023-05-18 16:16:05 -04:00
|
|
|
std::string format_string = "";
|
|
|
|
size_t word_length;
|
|
|
|
char symbol_type;
|
|
|
|
|
|
|
|
encoder_def = &encoder_defs[index];
|
|
|
|
|
|
|
|
field_clk.set_value(encoder_def->default_speed / 1000);
|
|
|
|
field_repeat_min.set_value(encoder_def->repeat_min);
|
|
|
|
|
|
|
|
// SymField setup
|
|
|
|
word_length = encoder_def->word_length;
|
|
|
|
symfield_word.set_length(word_length);
|
|
|
|
size_t n = 0, i = 0;
|
|
|
|
while (n < word_length) {
|
|
|
|
symbol_type = encoder_def->word_format[i++];
|
|
|
|
if (symbol_type == 'A') {
|
|
|
|
symfield_word.set_symbol_list(n++, encoder_def->address_symbols);
|
|
|
|
format_string += 'A';
|
|
|
|
} else if (symbol_type == 'D') {
|
|
|
|
symfield_word.set_symbol_list(n++, encoder_def->data_symbols);
|
|
|
|
format_string += 'D';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ugly :( Pad to erase
|
|
|
|
format_string.append(24 - format_string.size(), ' ');
|
|
|
|
|
|
|
|
text_format.set(format_string);
|
|
|
|
|
|
|
|
generate_frame();
|
2016-08-02 22:53:51 -04:00
|
|
|
}
|
|
|
|
|
2017-08-28 17:17:02 -04:00
|
|
|
void EncodersConfigView::on_show() {
|
2023-05-18 16:16:05 -04:00
|
|
|
options_enctype.set_selected_index(0);
|
|
|
|
on_type_change(0);
|
2017-08-28 17:17:02 -04:00
|
|
|
}
|
2017-01-08 21:45:29 -05:00
|
|
|
|
2017-08-28 17:17:02 -04:00
|
|
|
void EncodersConfigView::draw_waveform() {
|
2023-05-18 16:16:05 -04:00
|
|
|
size_t length = frame_fragments.length();
|
2017-08-29 04:42:04 -04:00
|
|
|
|
2023-05-18 16:16:05 -04:00
|
|
|
for (size_t n = 0; n < length; n++)
|
|
|
|
waveform_buffer[n] = (frame_fragments[n] == '0') ? 0 : 1;
|
2022-12-05 09:51:23 -05:00
|
|
|
|
2023-05-18 16:16:05 -04:00
|
|
|
waveform.set_length(length);
|
|
|
|
waveform.set_dirty();
|
2016-08-06 02:49:45 -04:00
|
|
|
}
|
|
|
|
|
2017-08-28 17:17:02 -04:00
|
|
|
void EncodersConfigView::generate_frame() {
|
2023-05-18 16:16:05 -04:00
|
|
|
size_t i = 0;
|
2022-12-05 09:51:23 -05:00
|
|
|
|
2023-05-18 16:16:05 -04:00
|
|
|
frame_fragments.clear();
|
2022-12-05 09:51:23 -05:00
|
|
|
|
2023-05-18 16:16:05 -04:00
|
|
|
for (auto c : encoder_def->word_format) {
|
|
|
|
if (c == 'S')
|
|
|
|
frame_fragments += encoder_def->sync;
|
|
|
|
else if (!c)
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
frame_fragments += encoder_def->bit_format[symfield_word.get_sym(i++)];
|
|
|
|
}
|
2022-12-05 09:51:23 -05:00
|
|
|
|
2023-05-18 16:16:05 -04:00
|
|
|
draw_waveform();
|
2017-08-28 17:17:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
uint8_t EncodersConfigView::repeat_min() {
|
2023-05-18 16:16:05 -04:00
|
|
|
return field_repeat_min.value();
|
2017-08-28 17:17:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t EncodersConfigView::samples_per_bit() {
|
2023-05-18 16:16:05 -04:00
|
|
|
return OOK_SAMPLERATE / ((field_clk.value() * 1000) / encoder_def->clk_per_fragment);
|
2017-08-28 17:17:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t EncodersConfigView::pause_symbols() {
|
2023-05-18 16:16:05 -04:00
|
|
|
return encoder_def->pause_symbols;
|
2017-08-28 17:17:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void EncodersScanView::focus() {
|
2023-05-18 16:16:05 -04:00
|
|
|
field_length.focus();
|
2017-08-28 17:17:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
EncodersScanView::EncodersScanView(
|
2023-05-18 16:16:05 -04:00
|
|
|
NavigationView&,
|
|
|
|
Rect parent_rect) {
|
|
|
|
set_parent_rect(parent_rect);
|
|
|
|
hidden(true);
|
|
|
|
|
|
|
|
add_children({&labels,
|
|
|
|
&field_length,
|
|
|
|
&bit_length_10,
|
|
|
|
&bit_length});
|
|
|
|
|
|
|
|
field_length.set_value(8);
|
|
|
|
bit_length_10.set_value(40);
|
|
|
|
bit_length.set_value(0);
|
2017-08-28 17:17:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void EncodersView::focus() {
|
2023-05-18 16:16:05 -04:00
|
|
|
tab_view.focus();
|
2017-08-28 17:17:02 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
EncodersView::~EncodersView() {
|
2023-05-18 16:16:05 -04:00
|
|
|
transmitter_model.disable();
|
|
|
|
hackrf::cpld::load_sram_no_verify(); // ghost signal c/m to the problem at the exit .
|
|
|
|
baseband::shutdown(); // better this function after load_sram()
|
2017-08-28 17:17:02 -04:00
|
|
|
}
|
|
|
|
|
2016-08-02 22:53:51 -04:00
|
|
|
void EncodersView::update_progress() {
|
2023-05-18 16:16:05 -04:00
|
|
|
std::string str_buffer;
|
|
|
|
|
|
|
|
if (tx_mode == SINGLE || tx_mode == SCAN) {
|
|
|
|
str_buffer = to_string_dec_uint(repeat_index) + "/" + to_string_dec_uint(repeat_min);
|
|
|
|
text_status.set(str_buffer);
|
|
|
|
progressbar.set_value(repeat_index);
|
|
|
|
} else {
|
|
|
|
text_status.set("Ready");
|
|
|
|
progressbar.set_value(0);
|
|
|
|
}
|
2016-08-02 22:53:51 -04:00
|
|
|
}
|
|
|
|
|
2017-09-24 15:05:42 -04:00
|
|
|
void EncodersView::on_tx_progress(const uint32_t progress, const bool done) {
|
2023-05-18 16:16:05 -04:00
|
|
|
if (!done) {
|
|
|
|
// Repeating...
|
|
|
|
repeat_index = progress + 1;
|
|
|
|
update_progress();
|
|
|
|
} else {
|
|
|
|
// make sure all samples are transmitted before disabling radio
|
|
|
|
chThdSleepMilliseconds(10);
|
|
|
|
|
|
|
|
// Done transmitting
|
|
|
|
transmitter_model.disable();
|
|
|
|
tx_mode = IDLE;
|
|
|
|
text_status.set("Done");
|
|
|
|
progressbar.set_value(0);
|
|
|
|
tx_view.set_transmitting(false);
|
|
|
|
}
|
2016-08-02 22:53:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void EncodersView::start_tx(const bool scan) {
|
2023-05-18 16:16:05 -04:00
|
|
|
size_t bitstream_length = 0;
|
|
|
|
int scan_width = 0;
|
|
|
|
uint32_t samples_per_bit;
|
|
|
|
|
|
|
|
if (scan) {
|
|
|
|
tx_mode = SCAN;
|
|
|
|
scan_width = view_scan.field_length.value();
|
|
|
|
samples_per_bit =
|
|
|
|
((view_scan.bit_length_10.value() * 10 + view_scan.bit_length.value()) * OOK_SAMPLERATE) / 1000000UL;
|
|
|
|
constexpr auto sym_len = 4;
|
|
|
|
const uint32_t seq_len = ((1 << (scan_width - 1)) * 2) * ((uint64_t)samples_per_bit) * sym_len / 2048UL;
|
|
|
|
progressbar.set_max(seq_len);
|
|
|
|
repeat_min = seq_len;
|
|
|
|
} else {
|
|
|
|
tx_mode = SINGLE;
|
|
|
|
samples_per_bit = view_config.samples_per_bit();
|
|
|
|
view_config.generate_frame();
|
|
|
|
bitstream_length = make_bitstream(view_config.frame_fragments);
|
|
|
|
progressbar.set_max(repeat_min);
|
|
|
|
repeat_min = view_config.repeat_min();
|
|
|
|
}
|
|
|
|
|
|
|
|
repeat_index = 1;
|
|
|
|
update_progress();
|
|
|
|
|
|
|
|
transmitter_model.enable();
|
|
|
|
|
|
|
|
baseband::set_ook_data(
|
|
|
|
bitstream_length,
|
|
|
|
samples_per_bit,
|
|
|
|
repeat_min,
|
|
|
|
view_config.pause_symbols(),
|
|
|
|
scan_width);
|
2016-08-02 22:53:51 -04:00
|
|
|
}
|
|
|
|
|
2017-08-28 17:17:02 -04:00
|
|
|
EncodersView::EncodersView(
|
2023-05-18 16:16:05 -04:00
|
|
|
NavigationView& nav)
|
|
|
|
: nav_{nav} {
|
|
|
|
baseband::run_image(portapack::spi_flash::image_tag_ook);
|
|
|
|
|
|
|
|
add_children({&tab_view,
|
|
|
|
&view_config,
|
|
|
|
&view_scan,
|
|
|
|
&text_status,
|
|
|
|
&progressbar,
|
|
|
|
&tx_view});
|
|
|
|
|
|
|
|
tx_view.on_edit_frequency = [this, &nav]() {
|
2023-06-11 14:47:13 -04:00
|
|
|
auto new_view = nav.push<FrequencyKeypadView>(transmitter_model.target_frequency());
|
2023-05-18 16:16:05 -04:00
|
|
|
new_view->on_changed = [this](rf::Frequency f) {
|
2023-06-11 14:47:13 -04:00
|
|
|
transmitter_model.set_target_frequency(f);
|
2023-05-18 16:16:05 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
tx_view.on_start = [this]() {
|
|
|
|
tx_view.set_transmitting(true);
|
|
|
|
start_tx(tab_view.selected());
|
|
|
|
};
|
|
|
|
|
|
|
|
tx_view.on_stop = [this]() {
|
|
|
|
tx_view.set_transmitting(false);
|
|
|
|
baseband::kill_ook();
|
|
|
|
transmitter_model.disable();
|
|
|
|
};
|
2016-08-02 22:53:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
} /* namespace ui */
|