2016-05-11 06:45:03 -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_closecall.hpp"
|
2016-05-14 20:35:08 -04:00
|
|
|
#include "msgpack.hpp"
|
2016-05-11 06:45:03 -04:00
|
|
|
|
|
|
|
#include "ch.h"
|
2016-05-12 19:18:04 -04:00
|
|
|
#include "time.hpp"
|
2016-05-11 06:45:03 -04:00
|
|
|
|
|
|
|
#include "event_m0.hpp"
|
|
|
|
#include "hackrf_gpio.hpp"
|
|
|
|
#include "portapack.hpp"
|
|
|
|
#include "radio.hpp"
|
|
|
|
#include "baseband_api.hpp"
|
2016-05-17 14:27:51 -04:00
|
|
|
#include "string_format.hpp"
|
2016-05-11 06:45:03 -04:00
|
|
|
|
|
|
|
#include "hackrf_hal.hpp"
|
|
|
|
|
|
|
|
#include <cstring>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
using namespace portapack;
|
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
|
|
|
void CloseCallView::focus() {
|
|
|
|
button_exit.focus();
|
|
|
|
}
|
|
|
|
|
|
|
|
CloseCallView::~CloseCallView() {
|
|
|
|
receiver_model.disable();
|
2016-05-12 19:18:04 -04:00
|
|
|
time::signal_tick_second -= signal_token_tick_second;
|
2016-05-11 06:45:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void CloseCallView::do_detection() {
|
|
|
|
uint8_t xmax = 0;
|
2016-05-17 14:27:51 -04:00
|
|
|
int64_t imax = 0;
|
|
|
|
uint16_t iraw = 0, c;
|
|
|
|
uint8_t power;
|
|
|
|
rf::Frequency freq_low, freq_high;
|
2016-05-11 06:45:03 -04:00
|
|
|
|
2016-05-17 14:27:51 -04:00
|
|
|
mean /= (CC_BIN_NB * slices_max);
|
2016-05-11 06:45:03 -04:00
|
|
|
|
2016-05-17 14:27:51 -04:00
|
|
|
// Find max value over threshold from all slices
|
|
|
|
for (c = 0; c < slices_max; c++) {
|
|
|
|
power = slicemax_db[c];
|
|
|
|
if (power >= min_threshold) {
|
|
|
|
if ((power - min_threshold >= mean) && (power > xmax)) {
|
|
|
|
xmax = power;
|
2016-05-16 06:02:45 -04:00
|
|
|
imax = slicemax_idx[c] + (c * CC_BIN_NB);
|
2016-05-17 14:27:51 -04:00
|
|
|
iraw = slicemax_idx[c];
|
2016-05-11 06:45:03 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-11 17:57:22 -04:00
|
|
|
// e-Message POCSAG FR:
|
|
|
|
// 466.025 MHz - 466.05 MHz - 466.075 MHz - 466.175 MHz - 466.20625 MHz - 466.23125 MHz
|
|
|
|
// 25 25 100 31 25
|
|
|
|
|
|
|
|
// Catches:
|
|
|
|
// 466.000
|
|
|
|
// 466.021 21
|
|
|
|
// 466.042 21
|
|
|
|
// 466.148 106
|
|
|
|
// 466.169 21
|
|
|
|
// 466.190 21
|
|
|
|
|
2016-05-11 06:45:03 -04:00
|
|
|
// Lock / release
|
2016-05-11 17:57:22 -04:00
|
|
|
if ((imax >= last_channel - 2) && (imax <= last_channel + 2) && imax) {
|
2016-05-17 14:27:51 -04:00
|
|
|
// Staying around the same frequency (+/- 25.4kHz)
|
|
|
|
if (detect_counter >= (5 / slices_max)) {
|
|
|
|
if ((imax != locked_imax) || (!locked)) {
|
|
|
|
char finalstr[29] = {0};
|
|
|
|
|
|
|
|
// 236 steps = 3MHz
|
|
|
|
// Resolution = 12.7kHz
|
|
|
|
if (locked)
|
|
|
|
resolved_frequency = (resolved_frequency + slice_start + (CC_BIN_WIDTH * (imax - 118))) / 2; // Mean
|
|
|
|
else
|
|
|
|
resolved_frequency = slice_start + (CC_BIN_WIDTH * (imax - 118)); // Init
|
2016-05-11 06:45:03 -04:00
|
|
|
|
2016-05-27 00:48:04 -04:00
|
|
|
//text_debug.set(to_string_dec_int(CC_BIN_WIDTH * (imax - 118)));
|
2016-05-17 14:27:51 -04:00
|
|
|
|
|
|
|
// Correct according to DC spike mask width (4 for now)
|
|
|
|
if (iraw > 118)
|
|
|
|
resolved_frequency -= (2 * CC_BIN_WIDTH);
|
|
|
|
else
|
|
|
|
resolved_frequency += (2 * CC_BIN_WIDTH);
|
2016-05-11 06:45:03 -04:00
|
|
|
|
2016-05-16 06:02:45 -04:00
|
|
|
text_infos.set("Locked !");
|
2016-05-14 20:35:08 -04:00
|
|
|
big_display.set_style(&style_locked);
|
2016-05-16 06:02:45 -04:00
|
|
|
big_display.set(resolved_frequency);
|
2016-05-11 17:57:22 -04:00
|
|
|
|
2016-05-17 14:27:51 -04:00
|
|
|
// Approximation/error display
|
|
|
|
freq_low = (resolved_frequency - 6355) / 1000;
|
|
|
|
freq_high = (resolved_frequency + 6355) / 1000;
|
|
|
|
strcat(finalstr, "~12.7kHz ");
|
|
|
|
strcat(finalstr, to_string_dec_uint(freq_low / 1000).c_str());
|
|
|
|
strcat(finalstr, ".");
|
|
|
|
strcat(finalstr, to_string_dec_uint(freq_low % 1000).c_str());
|
|
|
|
strcat(finalstr, "/");
|
|
|
|
strcat(finalstr, to_string_dec_uint(freq_high / 1000).c_str());
|
|
|
|
strcat(finalstr, ".");
|
|
|
|
strcat(finalstr, to_string_dec_uint(freq_high % 1000).c_str());
|
|
|
|
text_precision.set(finalstr);
|
|
|
|
|
2016-05-11 17:57:22 -04:00
|
|
|
locked = true;
|
2016-05-17 14:27:51 -04:00
|
|
|
locked_imax = imax;
|
2016-05-11 06:45:03 -04:00
|
|
|
}
|
|
|
|
release_counter = 0;
|
|
|
|
} else {
|
|
|
|
detect_counter++;
|
|
|
|
}
|
|
|
|
} else {
|
2016-05-11 17:57:22 -04:00
|
|
|
detect_counter = 0;
|
2016-05-17 14:27:51 -04:00
|
|
|
if (locked) {
|
|
|
|
if (release_counter == 6) {
|
2016-05-11 06:45:03 -04:00
|
|
|
locked = false;
|
2016-05-16 06:02:45 -04:00
|
|
|
text_infos.set("Lost ");
|
2016-05-14 20:35:08 -04:00
|
|
|
big_display.set_style(&style_grey);
|
2016-05-16 06:02:45 -04:00
|
|
|
big_display.set(resolved_frequency);
|
2016-05-11 06:45:03 -04:00
|
|
|
} else {
|
|
|
|
release_counter++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
last_channel = imax;
|
2016-05-11 17:57:22 -04:00
|
|
|
scan_counter++;
|
2016-05-11 06:45:03 -04:00
|
|
|
|
2016-05-14 20:35:08 -04:00
|
|
|
portapack::display.fill_rectangle({last_pos, 90, 1, 13}, Color::black());
|
2016-05-17 14:27:51 -04:00
|
|
|
last_pos = (ui::Coord)(iraw);
|
2016-05-14 20:35:08 -04:00
|
|
|
portapack::display.fill_rectangle({last_pos, 90, 1, 13}, Color::red());
|
2016-05-11 06:45:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void CloseCallView::on_channel_spectrum(const ChannelSpectrum& spectrum) {
|
|
|
|
uint8_t xmax = 0;
|
|
|
|
uint16_t imax = 0;
|
|
|
|
uint8_t threshold;
|
2016-05-11 17:57:22 -04:00
|
|
|
size_t i, m;
|
2016-05-11 06:45:03 -04:00
|
|
|
|
2016-07-26 21:03:40 -04:00
|
|
|
baseband::spectrum_streaming_stop();
|
2016-05-27 00:48:04 -04:00
|
|
|
|
|
|
|
// Spectrum line (for debug)
|
|
|
|
std::array<Color, 240> pixel_row;
|
|
|
|
for(i = 0; i < 118; i++) {
|
|
|
|
const auto pixel_color = spectrum_rgb3_lut[spectrum.db[256 - 120 + i]];
|
|
|
|
pixel_row[i + 2] = pixel_color;
|
|
|
|
}
|
2016-05-11 06:45:03 -04:00
|
|
|
|
2016-05-27 00:48:04 -04:00
|
|
|
for(i = 122; i < 240; i++) {
|
|
|
|
const auto pixel_color = spectrum_rgb3_lut[spectrum.db[i - 120]];
|
|
|
|
pixel_row[i - 2] = pixel_color;
|
|
|
|
}
|
2016-05-11 06:45:03 -04:00
|
|
|
|
2016-05-27 00:48:04 -04:00
|
|
|
display.draw_pixels(
|
|
|
|
{ { 0, 96 + slices_counter * 4 }, { pixel_row.size(), 1 } },
|
|
|
|
pixel_row
|
|
|
|
);
|
|
|
|
|
|
|
|
// Find max for this slice:
|
|
|
|
|
|
|
|
// Check if left of slice needs to be trimmed (masked)
|
|
|
|
if (slices_counter == 0)
|
|
|
|
i = slice_trim;
|
|
|
|
else
|
|
|
|
i = 0;
|
|
|
|
for ( ; i < 118; i++) {
|
|
|
|
threshold = spectrum.db[256 - 120 + i]; // 128+8 = 136 ~254
|
|
|
|
if (threshold > xmax) {
|
|
|
|
xmax = threshold;
|
|
|
|
imax = i;
|
2016-05-11 06:45:03 -04:00
|
|
|
}
|
2016-05-27 00:48:04 -04:00
|
|
|
}
|
|
|
|
// Check if right of slice needs to be trimmed (masked)
|
|
|
|
if (slices_counter == (slices_max - 1))
|
|
|
|
m = 240 - slice_trim;
|
|
|
|
else
|
|
|
|
m = 240;
|
|
|
|
for (i = 122 ; i < m; i++) {
|
|
|
|
threshold = spectrum.db[i - 120]; // 240-120 = 120 -> +8 = 128
|
|
|
|
if (threshold > xmax) { // (0~2) 2~120 (120~136) 136~254 (254~256)
|
|
|
|
xmax = threshold;
|
|
|
|
imax = i - 4;
|
2016-05-11 06:45:03 -04:00
|
|
|
}
|
2016-05-27 00:48:04 -04:00
|
|
|
}
|
|
|
|
slicemax_db[slices_counter] = xmax;
|
|
|
|
slicemax_idx[slices_counter] = imax;
|
2016-05-11 06:45:03 -04:00
|
|
|
|
2016-05-27 00:48:04 -04:00
|
|
|
// Add to mean
|
|
|
|
for (i = 136; i < 254; i++)
|
|
|
|
mean += spectrum.db[i];
|
|
|
|
for (i = 2; i < 120; i++)
|
|
|
|
mean += spectrum.db[i];
|
|
|
|
|
|
|
|
// Slice update
|
|
|
|
if (slicing) {
|
|
|
|
if (slices_counter >= (slices_max - 1)) {
|
2016-05-11 06:45:03 -04:00
|
|
|
do_detection();
|
2016-05-27 00:48:04 -04:00
|
|
|
mean = 0;
|
|
|
|
slices_counter = 0;
|
|
|
|
} else {
|
|
|
|
slices_counter++;
|
2016-05-11 06:45:03 -04:00
|
|
|
}
|
2016-05-27 00:48:04 -04:00
|
|
|
slice_frequency = slice_start + (slices_counter * CC_SLICE_WIDTH);
|
|
|
|
receiver_model.set_tuning_frequency(slice_frequency);
|
2016-05-11 06:45:03 -04:00
|
|
|
} else {
|
2016-05-27 00:48:04 -04:00
|
|
|
do_detection();
|
2016-05-11 06:45:03 -04:00
|
|
|
}
|
2016-05-27 00:48:04 -04:00
|
|
|
|
2016-07-26 21:03:40 -04:00
|
|
|
baseband::spectrum_streaming_start();
|
2016-05-11 06:45:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void CloseCallView::on_show() {
|
2016-07-26 21:03:40 -04:00
|
|
|
baseband::spectrum_streaming_start();
|
2016-05-11 06:45:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void CloseCallView::on_hide() {
|
|
|
|
baseband::spectrum_streaming_stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CloseCallView::on_range_changed() {
|
|
|
|
rf::Frequency f_min, f_max;
|
|
|
|
rf::Frequency slices_span;
|
2016-05-11 17:57:22 -04:00
|
|
|
rf::Frequency resolved_frequency;
|
2016-05-11 06:45:03 -04:00
|
|
|
int64_t offset;
|
2016-05-27 00:48:04 -04:00
|
|
|
|
2016-05-11 06:45:03 -04:00
|
|
|
f_max = field_frequency_max.value();
|
|
|
|
f_min = field_frequency_min.value();
|
|
|
|
scan_span = abs(f_max - f_min);
|
2016-05-17 14:27:51 -04:00
|
|
|
|
2016-05-11 06:45:03 -04:00
|
|
|
if (scan_span > CC_SLICE_WIDTH) {
|
|
|
|
// ex: 100~115 (15): 102.5(97.5~107.5) -> 112.5(107.5~117.5) = 2.5 lost left and right
|
|
|
|
slices_max = (scan_span + CC_SLICE_WIDTH - 1) / CC_SLICE_WIDTH;
|
|
|
|
slices_span = slices_max * CC_SLICE_WIDTH;
|
2016-05-14 20:35:08 -04:00
|
|
|
offset = ((scan_span - slices_span) / 2) + (CC_SLICE_WIDTH / 2);
|
2016-05-11 06:45:03 -04:00
|
|
|
slice_start = std::min(f_min, f_max) + offset;
|
2016-05-14 20:35:08 -04:00
|
|
|
slice_trim = 0;
|
2016-05-11 06:45:03 -04:00
|
|
|
slicing = true;
|
2016-05-11 17:57:22 -04:00
|
|
|
|
|
|
|
// Todo: trims
|
2016-05-11 06:45:03 -04:00
|
|
|
} else {
|
|
|
|
slice_frequency = (f_max + f_min) / 2;
|
|
|
|
slice_start = slice_frequency;
|
|
|
|
receiver_model.set_tuning_frequency(slice_frequency);
|
2016-05-11 17:57:22 -04:00
|
|
|
|
|
|
|
resolved_frequency = (CC_SLICE_WIDTH - scan_span) / 2; // Trim frequency span (for both sides)
|
|
|
|
resolved_frequency /= CC_BIN_WIDTH; // Convert to bin span
|
|
|
|
slice_trim = resolved_frequency;
|
|
|
|
|
2016-05-17 14:27:51 -04:00
|
|
|
portapack::display.fill_rectangle({0, 97, 240, 4}, Color::black());
|
2016-05-11 17:57:22 -04:00
|
|
|
portapack::display.fill_rectangle({0, 97, slice_trim, 4}, Color::orange());
|
|
|
|
portapack::display.fill_rectangle({240 - slice_trim, 97, slice_trim, 4}, Color::orange());
|
|
|
|
|
2016-05-17 14:27:51 -04:00
|
|
|
slices_max = 1;
|
2016-05-11 06:45:03 -04:00
|
|
|
slices_counter = 0;
|
|
|
|
slicing = false;
|
2016-05-27 00:48:04 -04:00
|
|
|
}
|
2016-05-11 17:57:22 -04:00
|
|
|
|
2016-05-27 00:48:04 -04:00
|
|
|
/*
|
2016-05-17 14:27:51 -04:00
|
|
|
f_min = field_frequency_min.value();
|
|
|
|
scan_span = 3000000;
|
|
|
|
slice_frequency = (f_min + 1500000);
|
|
|
|
slice_start = slice_frequency;
|
|
|
|
receiver_model.set_tuning_frequency(slice_frequency);
|
|
|
|
slice_trim = 0;
|
|
|
|
slices_max = 1;
|
|
|
|
slices_counter = 0;
|
|
|
|
slicing = false;
|
|
|
|
field_frequency_max.set_value(f_min + 3000000);
|
2016-05-27 00:48:04 -04:00
|
|
|
*/
|
2016-05-17 14:27:51 -04:00
|
|
|
|
|
|
|
text_slices.set(to_string_dec_int(slices_max));
|
2016-05-11 06:45:03 -04:00
|
|
|
slices_counter = 0;
|
|
|
|
}
|
|
|
|
|
2016-05-11 17:57:22 -04:00
|
|
|
void CloseCallView::on_lna_changed(int32_t v_db) {
|
|
|
|
receiver_model.set_lna(v_db);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CloseCallView::on_vga_changed(int32_t v_db) {
|
|
|
|
receiver_model.set_vga(v_db);
|
|
|
|
}
|
|
|
|
|
2016-05-12 19:18:04 -04:00
|
|
|
void CloseCallView::on_tick_second() {
|
2016-05-17 14:27:51 -04:00
|
|
|
// Update scan rate indication
|
2016-05-11 17:57:22 -04:00
|
|
|
text_rate.set(to_string_dec_uint(scan_counter, 3));
|
|
|
|
scan_counter = 0;
|
|
|
|
}
|
|
|
|
|
2016-05-11 06:45:03 -04:00
|
|
|
CloseCallView::CloseCallView(
|
|
|
|
NavigationView& nav
|
|
|
|
)
|
|
|
|
{
|
|
|
|
add_children({ {
|
2016-05-11 17:57:22 -04:00
|
|
|
&text_labels_a,
|
|
|
|
&text_labels_b,
|
|
|
|
&text_labels_c,
|
2016-05-11 06:45:03 -04:00
|
|
|
&field_frequency_min,
|
|
|
|
&field_frequency_max,
|
2016-05-11 17:57:22 -04:00
|
|
|
&field_lna,
|
|
|
|
&field_vga,
|
|
|
|
&field_threshold,
|
|
|
|
&text_slices,
|
|
|
|
&text_rate,
|
2016-05-16 06:02:45 -04:00
|
|
|
&text_mhz,
|
2016-05-11 06:45:03 -04:00
|
|
|
&text_infos,
|
2016-05-17 14:27:51 -04:00
|
|
|
&text_precision,
|
2016-05-11 17:57:22 -04:00
|
|
|
&text_debug,
|
|
|
|
&big_display,
|
2016-05-11 06:45:03 -04:00
|
|
|
&button_exit
|
|
|
|
} });
|
2016-05-11 17:57:22 -04:00
|
|
|
|
2016-05-16 06:02:45 -04:00
|
|
|
// DEBUG -------------------------------------------------------------------------
|
|
|
|
/*uint8_t testbuffer[] = { 0xDE, 0x00, 0x02,
|
2016-05-14 20:35:08 -04:00
|
|
|
0xCD, 0x00, 0x00, // Key 0000 = False
|
|
|
|
0xC2,
|
|
|
|
0xCD, 0x00, 0x01, // Key 0001 = True
|
2016-05-16 06:02:45 -04:00
|
|
|
0xC3,
|
|
|
|
0xCD, 0x00, 0x02, // Key 0002 = False
|
|
|
|
0xC2,
|
|
|
|
0xCD, 0x00, 0x03, // Key 0003 = fixnum 19
|
|
|
|
19
|
|
|
|
};*/
|
2016-05-14 20:35:08 -04:00
|
|
|
|
2016-05-16 06:02:45 -04:00
|
|
|
uint8_t testbuffer[100];
|
|
|
|
uint8_t debug_v = 7;
|
|
|
|
size_t bptr;
|
2016-05-14 20:35:08 -04:00
|
|
|
MsgPack msgpack;
|
2016-05-16 06:02:45 -04:00
|
|
|
|
|
|
|
bptr = 0;
|
|
|
|
|
|
|
|
msgpack.msgpack_init(&testbuffer, &bptr);
|
|
|
|
msgpack.msgpack_add(&testbuffer, &bptr, MsgPack::TestListA, false);
|
|
|
|
msgpack.msgpack_add(&testbuffer, &bptr, MsgPack::TestListB, true);
|
|
|
|
msgpack.msgpack_add(&testbuffer, &bptr, MsgPack::TestListC, false);
|
|
|
|
msgpack.msgpack_add(&testbuffer, &bptr, MsgPack::TestListD, (uint8_t)19);
|
|
|
|
|
|
|
|
msgpack.msgpack_get(&testbuffer, bptr, MsgPack::TestListD, &debug_v);
|
|
|
|
if (debug_v == 19)
|
2016-05-14 20:35:08 -04:00
|
|
|
text_debug.set("OK!");
|
|
|
|
else
|
2016-05-16 06:02:45 -04:00
|
|
|
text_debug.set(to_string_dec_uint(testbuffer[0]));
|
|
|
|
|
|
|
|
// DEBUG -------------------------------------------------------------------------
|
2016-05-14 20:35:08 -04:00
|
|
|
|
2016-05-11 17:57:22 -04:00
|
|
|
text_labels_a.set_style(&style_grey);
|
|
|
|
text_labels_b.set_style(&style_grey);
|
|
|
|
text_labels_c.set_style(&style_grey);
|
|
|
|
text_slices.set_style(&style_grey);
|
|
|
|
text_rate.set_style(&style_grey);
|
2016-05-16 06:02:45 -04:00
|
|
|
text_mhz.set_style(&style_grey);
|
|
|
|
big_display.set_style(&style_grey);
|
2016-05-11 17:57:22 -04:00
|
|
|
|
2016-05-17 14:27:51 -04:00
|
|
|
receiver_model.set_tuning_frequency(467000000);
|
|
|
|
|
2016-05-11 17:57:22 -04:00
|
|
|
field_threshold.set_value(80);
|
|
|
|
field_threshold.on_change = [this](int32_t v) {
|
|
|
|
min_threshold = v;
|
|
|
|
};
|
2016-05-11 06:45:03 -04:00
|
|
|
|
2016-05-11 17:57:22 -04:00
|
|
|
field_frequency_min.set_value(receiver_model.tuning_frequency());
|
2016-05-17 14:27:51 -04:00
|
|
|
field_frequency_min.set_step(100000);
|
2016-05-11 06:45:03 -04:00
|
|
|
field_frequency_min.on_change = [this](rf::Frequency f) {
|
|
|
|
(void) f;
|
|
|
|
this->on_range_changed();
|
|
|
|
};
|
|
|
|
field_frequency_min.on_edit = [this, &nav]() {
|
|
|
|
auto new_view = nav.push<FrequencyKeypadView>(receiver_model.tuning_frequency());
|
|
|
|
new_view->on_changed = [this](rf::Frequency f) {
|
|
|
|
this->on_range_changed();
|
|
|
|
this->field_frequency_min.set_value(f);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-05-17 14:27:51 -04:00
|
|
|
field_frequency_max.set_focusable(false); // DEBUG
|
|
|
|
|
|
|
|
field_frequency_max.set_value(receiver_model.tuning_frequency() + 3000000);
|
2016-05-12 19:18:04 -04:00
|
|
|
field_frequency_max.set_step(100000);
|
2016-05-17 14:27:51 -04:00
|
|
|
/*field_frequency_max.on_change = [this](rf::Frequency f) {
|
2016-05-11 06:45:03 -04:00
|
|
|
(void) f;
|
|
|
|
this->on_range_changed();
|
|
|
|
};
|
|
|
|
field_frequency_max.on_edit = [this, &nav]() {
|
|
|
|
auto new_view = nav.push<FrequencyKeypadView>(receiver_model.tuning_frequency());
|
|
|
|
new_view->on_changed = [this](rf::Frequency f) {
|
|
|
|
this->on_range_changed();
|
|
|
|
this->field_frequency_max.set_value(f);
|
|
|
|
};
|
2016-05-17 14:27:51 -04:00
|
|
|
};*/
|
2016-05-11 06:45:03 -04:00
|
|
|
|
2016-05-11 17:57:22 -04:00
|
|
|
field_lna.set_value(receiver_model.lna());
|
2016-05-11 06:45:03 -04:00
|
|
|
field_lna.on_change = [this](int32_t v) {
|
|
|
|
this->on_lna_changed(v);
|
|
|
|
};
|
|
|
|
|
|
|
|
field_vga.set_value(receiver_model.vga());
|
|
|
|
field_vga.on_change = [this](int32_t v_db) {
|
|
|
|
this->on_vga_changed(v_db);
|
|
|
|
};
|
|
|
|
|
2016-05-11 17:57:22 -04:00
|
|
|
on_range_changed();
|
2016-05-11 06:45:03 -04:00
|
|
|
|
2016-05-11 17:57:22 -04:00
|
|
|
button_exit.on_select = [&nav](Button&){
|
|
|
|
nav.pop();
|
|
|
|
};
|
2016-05-11 06:45:03 -04:00
|
|
|
|
2016-05-12 19:18:04 -04:00
|
|
|
signal_token_tick_second = time::signal_tick_second += [this]() {
|
|
|
|
this->on_tick_second();
|
|
|
|
};
|
|
|
|
|
2016-05-11 06:45:03 -04:00
|
|
|
receiver_model.set_baseband_configuration({
|
|
|
|
.mode = toUType(ReceiverModel::Mode::CloseCall),
|
|
|
|
.sampling_rate = CC_SLICE_WIDTH,
|
|
|
|
.decimation_factor = 1,
|
|
|
|
});
|
|
|
|
receiver_model.set_baseband_bandwidth(CC_SLICE_WIDTH);
|
2016-07-26 21:03:40 -04:00
|
|
|
//receiver_model.enable();
|
2016-05-11 06:45:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
} /* namespace ui */
|