2016-04-11 13:59:55 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Jared Boone, ShareBrained Technology, Inc.
|
2018-04-18 17:44:41 -04:00
|
|
|
* Copyright (C) 2018 Furrtek
|
2016-04-11 13:59:55 -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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "capture_app.hpp"
|
2016-06-23 15:03:47 -04:00
|
|
|
#include "baseband_api.hpp"
|
2016-04-12 13:56:00 -04:00
|
|
|
#include "portapack.hpp"
|
2023-07-17 14:43:37 -04:00
|
|
|
#include "ui_freqman.hpp"
|
2023-06-17 10:54:52 -04:00
|
|
|
|
2016-04-12 13:56:00 -04:00
|
|
|
using namespace portapack;
|
2016-04-11 13:59:55 -04:00
|
|
|
|
|
|
|
namespace ui {
|
|
|
|
|
2023-06-18 15:11:04 -04:00
|
|
|
CaptureAppView::CaptureAppView(NavigationView& nav)
|
|
|
|
: nav_{nav} {
|
2023-05-18 16:16:05 -04:00
|
|
|
baseband::run_image(portapack::spi_flash::image_tag_capture);
|
|
|
|
|
|
|
|
add_children({
|
|
|
|
&labels,
|
|
|
|
&rssi,
|
|
|
|
&channel,
|
|
|
|
&field_frequency,
|
|
|
|
&field_frequency_step,
|
|
|
|
&field_rf_amp,
|
|
|
|
&field_lna,
|
|
|
|
&field_vga,
|
|
|
|
&option_bandwidth,
|
2023-07-22 03:20:56 -04:00
|
|
|
&option_format,
|
2023-05-18 16:16:05 -04:00
|
|
|
&record_view,
|
|
|
|
&waterfall,
|
|
|
|
});
|
|
|
|
|
|
|
|
field_frequency_step.set_by_value(receiver_model.frequency_step());
|
|
|
|
field_frequency_step.on_change = [this](size_t, OptionsField::value_t v) {
|
|
|
|
receiver_model.set_frequency_step(v);
|
2023-07-24 11:12:35 -04:00
|
|
|
this->field_frequency.set_step(v);
|
2023-05-18 16:16:05 -04:00
|
|
|
};
|
|
|
|
|
2023-07-22 03:20:56 -04:00
|
|
|
option_format.set_selected_index(0); // Default to C16
|
|
|
|
option_format.on_change = [this](size_t, uint32_t file_type) {
|
|
|
|
record_view.set_file_type((RecordView::FileType)file_type);
|
|
|
|
};
|
|
|
|
|
2023-07-22 13:06:55 -04:00
|
|
|
freqman_set_bandwidth_option(SPEC_MODULATION, option_bandwidth);
|
2023-05-18 16:16:05 -04:00
|
|
|
option_bandwidth.on_change = [this](size_t, uint32_t base_rate) {
|
2023-07-22 13:06:55 -04:00
|
|
|
/* base_rate is used for FFT calculation and display LCD, and also in recording writing SD Card rate. */
|
2023-06-17 10:54:52 -04:00
|
|
|
/* ex. sampling_rate values, 4Mhz, when recording 500 kHz (BW) and fs 8 Mhz, when selected 1 Mhz BW ... */
|
|
|
|
/* ex. recording 500kHz BW to .C16 file, base_rate clock 500kHz x2(I,Q) x 2 bytes (int signed) =2MB/sec rate SD Card */
|
2023-05-18 16:16:05 -04:00
|
|
|
|
2023-07-31 11:46:07 -04:00
|
|
|
// For lower bandwidths, (12k5, 16k, 20k), increase the oversample rate to get a higher sample rate.
|
|
|
|
OversampleRate oversample_rate = base_rate >= 25'000 ? OversampleRate::Rate8x : OversampleRate::Rate16x;
|
|
|
|
|
|
|
|
// HackRF suggests a minimum sample rate of 2M.
|
|
|
|
// Oversampling helps get to higher sample rates when recording lower bandwidths.
|
|
|
|
uint32_t sampling_rate = toUType(oversample_rate) * base_rate;
|
|
|
|
|
|
|
|
// Set up proper anti aliasing BPF bandwidth in MAX2837 before ADC sampling according to the new added BW Options.
|
2023-06-30 01:35:35 -04:00
|
|
|
auto anti_alias_baseband_bandwidth_filter = filter_bandwidth_for_sampling_rate(sampling_rate);
|
2023-06-17 10:54:52 -04:00
|
|
|
|
2023-07-22 13:06:55 -04:00
|
|
|
waterfall.stop();
|
2023-07-31 11:46:07 -04:00
|
|
|
record_view.set_sampling_rate(sampling_rate, oversample_rate); // NB: Actually updates the baseband.
|
2023-06-17 10:54:52 -04:00
|
|
|
receiver_model.set_sampling_rate(sampling_rate);
|
2023-05-18 16:16:05 -04:00
|
|
|
receiver_model.set_baseband_bandwidth(anti_alias_baseband_bandwidth_filter);
|
2023-07-22 13:06:55 -04:00
|
|
|
waterfall.start();
|
2023-05-18 16:16:05 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
receiver_model.enable();
|
2023-07-22 13:06:55 -04:00
|
|
|
option_bandwidth.set_selected_index(7); // Preselected default option 500kHz.
|
2023-05-18 16:16:05 -04:00
|
|
|
|
|
|
|
record_view.on_error = [&nav](std::string message) {
|
|
|
|
nav.display_modal("Error", message);
|
|
|
|
};
|
2016-04-11 13:59:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
CaptureAppView::~CaptureAppView() {
|
2023-05-18 16:16:05 -04:00
|
|
|
receiver_model.disable();
|
|
|
|
baseband::shutdown();
|
2016-04-11 13:59:55 -04:00
|
|
|
}
|
|
|
|
|
2016-04-13 14:09:18 -04:00
|
|
|
void CaptureAppView::set_parent_rect(const Rect new_parent_rect) {
|
2023-05-18 16:16:05 -04:00
|
|
|
View::set_parent_rect(new_parent_rect);
|
2016-04-13 14:09:18 -04:00
|
|
|
|
2023-06-17 10:54:52 -04:00
|
|
|
ui::Rect waterfall_rect{0, header_height, new_parent_rect.width(), new_parent_rect.height() - header_height};
|
2023-05-18 16:16:05 -04:00
|
|
|
waterfall.set_parent_rect(waterfall_rect);
|
2016-04-13 14:09:18 -04:00
|
|
|
}
|
|
|
|
|
2016-04-11 14:22:35 -04:00
|
|
|
void CaptureAppView::focus() {
|
2023-05-18 16:16:05 -04:00
|
|
|
record_view.focus();
|
2016-04-27 15:03:43 -04:00
|
|
|
}
|
|
|
|
|
2016-04-11 13:59:55 -04:00
|
|
|
} /* namespace ui */
|