2015-12-02 00:30:52 -05:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Jared Boone, ShareBrained Technology, Inc.
|
2018-05-21 13:46:48 -04:00
|
|
|
* Copyright (C) 2018 Furrtek
|
2015-12-02 00:30:52 -05: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.
|
|
|
|
*/
|
|
|
|
|
2015-12-08 18:28:33 -05:00
|
|
|
#ifndef __ANALOG_AUDIO_APP_H__
|
|
|
|
#define __ANALOG_AUDIO_APP_H__
|
2015-12-02 00:30:52 -05:00
|
|
|
|
|
|
|
#include "receiver_model.hpp"
|
2016-01-31 12:13:44 -05:00
|
|
|
|
|
|
|
#include "ui_receiver.hpp"
|
2015-12-02 00:30:52 -05:00
|
|
|
#include "ui_spectrum.hpp"
|
2016-04-30 16:56:54 -04:00
|
|
|
#include "ui_record_view.hpp"
|
2016-01-31 12:13:44 -05:00
|
|
|
#include "ui_font_fixed_8x16.hpp"
|
|
|
|
|
2017-11-28 02:52:04 -05:00
|
|
|
#include "tone_key.hpp"
|
|
|
|
|
2022-03-28 23:53:09 -04:00
|
|
|
|
2015-12-02 00:30:52 -05:00
|
|
|
namespace ui {
|
|
|
|
|
2016-01-31 12:13:44 -05:00
|
|
|
constexpr Style style_options_group {
|
|
|
|
.font = font::fixed_8x16,
|
|
|
|
.background = Color::blue(),
|
|
|
|
.foreground = Color::white(),
|
|
|
|
};
|
|
|
|
|
2016-02-02 16:42:00 -05:00
|
|
|
class AMOptionsView : public View {
|
|
|
|
public:
|
|
|
|
AMOptionsView(const Rect parent_rect, const Style* const style);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Text label_config {
|
|
|
|
{ 0 * 8, 0 * 16, 2 * 8, 1 * 16 },
|
|
|
|
"BW",
|
|
|
|
};
|
|
|
|
|
|
|
|
OptionsField options_config {
|
|
|
|
{ 3 * 8, 0 * 16 },
|
|
|
|
4,
|
|
|
|
{
|
|
|
|
{ "DSB ", 0 },
|
|
|
|
{ "USB ", 0 },
|
|
|
|
{ "LSB ", 0 },
|
2020-08-17 09:07:06 -04:00
|
|
|
{ "CW ", 0 },
|
2016-02-02 16:42:00 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
class NBFMOptionsView : public View {
|
|
|
|
public:
|
|
|
|
NBFMOptionsView(const Rect parent_rect, const Style* const style);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Text label_config {
|
|
|
|
{ 0 * 8, 0 * 16, 2 * 8, 1 * 16 },
|
|
|
|
"BW",
|
|
|
|
};
|
|
|
|
OptionsField options_config {
|
|
|
|
{ 3 * 8, 0 * 16 },
|
|
|
|
4,
|
|
|
|
{
|
|
|
|
{ " 8k5", 0 },
|
|
|
|
{ "11k ", 0 },
|
|
|
|
{ "16k ", 0 },
|
|
|
|
}
|
|
|
|
};
|
2017-06-11 04:50:29 -04:00
|
|
|
|
|
|
|
Text text_squelch {
|
2017-11-28 02:52:04 -05:00
|
|
|
{ 9 * 8, 0 * 16, 8 * 8, 1 * 16 },
|
|
|
|
"SQ /99"
|
2017-06-11 04:50:29 -04:00
|
|
|
};
|
|
|
|
NumberField field_squelch {
|
|
|
|
{ 12 * 8, 0 * 16 },
|
2017-11-28 02:52:04 -05:00
|
|
|
2,
|
|
|
|
{ 0, 99 },
|
2017-06-11 04:50:29 -04:00
|
|
|
1,
|
|
|
|
' ',
|
|
|
|
};
|
2016-02-02 16:42:00 -05:00
|
|
|
};
|
|
|
|
|
2020-07-31 06:47:40 -04:00
|
|
|
class AnalogAudioView;
|
|
|
|
|
|
|
|
class SPECOptionsView : public View {
|
|
|
|
public:
|
|
|
|
SPECOptionsView(AnalogAudioView* view, const Rect parent_rect, const Style* const style);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Text label_config {
|
|
|
|
{ 0 * 8, 0 * 16, 2 * 8, 1 * 16 },
|
|
|
|
"BW",
|
|
|
|
};
|
|
|
|
OptionsField options_config {
|
|
|
|
{ 3 * 8, 0 * 16 },
|
|
|
|
4,
|
|
|
|
{
|
|
|
|
{ "20m ", 20000000 },
|
|
|
|
{ "10m ", 10000000 },
|
|
|
|
{ " 5m ", 5000000 },
|
|
|
|
{ " 2m ", 2000000 },
|
|
|
|
{ " 1m ", 1000000 },
|
|
|
|
{ "500k", 500000 },
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Text text_speed {
|
|
|
|
{ 9 * 8, 0 * 16, 8 * 8, 1 * 16 },
|
|
|
|
"SP /63"
|
|
|
|
};
|
|
|
|
NumberField field_speed {
|
|
|
|
{ 12 * 8, 0 * 16 },
|
|
|
|
2,
|
|
|
|
{ 0, 63 },
|
|
|
|
1,
|
|
|
|
' ',
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-01-31 12:13:44 -05:00
|
|
|
class AnalogAudioView : public View {
|
2015-12-02 00:30:52 -05:00
|
|
|
public:
|
2018-06-12 02:55:12 -04:00
|
|
|
AnalogAudioView(NavigationView& nav);
|
2016-01-31 12:13:44 -05:00
|
|
|
~AnalogAudioView();
|
|
|
|
|
|
|
|
void on_hide() override;
|
|
|
|
|
|
|
|
void set_parent_rect(const Rect new_parent_rect) override;
|
|
|
|
|
|
|
|
void focus() override;
|
2015-12-02 00:30:52 -05:00
|
|
|
|
2022-04-26 17:09:24 -04:00
|
|
|
std::string title() const override { return "Audio RX"; };
|
2020-07-31 06:47:40 -04:00
|
|
|
|
|
|
|
size_t get_spec_bw_index();
|
|
|
|
void set_spec_bw(size_t index, uint32_t bw);
|
|
|
|
|
|
|
|
uint16_t get_spec_trigger();
|
|
|
|
void set_spec_trigger(uint16_t trigger);
|
|
|
|
|
2015-12-02 00:30:52 -05:00
|
|
|
private:
|
2016-04-22 15:30:02 -04:00
|
|
|
static constexpr ui::Dim header_height = 3 * 16;
|
2016-01-31 12:13:44 -05:00
|
|
|
|
2016-02-16 18:17:06 -05:00
|
|
|
const Rect options_view_rect { 0 * 8, 1 * 16, 30 * 8, 1 * 16 };
|
2017-11-28 02:52:04 -05:00
|
|
|
const Rect nbfm_view_rect { 0 * 8, 1 * 16, 18 * 8, 1 * 16 };
|
2016-02-16 18:17:06 -05:00
|
|
|
|
2020-07-31 06:47:40 -04:00
|
|
|
size_t spec_bw_index = 0;
|
|
|
|
uint32_t spec_bw = 20000000;
|
|
|
|
uint16_t spec_trigger = 63;
|
|
|
|
|
2017-05-18 06:06:11 -04:00
|
|
|
NavigationView& nav_;
|
2018-04-19 15:50:32 -04:00
|
|
|
//bool exit_on_squelch { false };
|
2017-05-18 06:06:11 -04:00
|
|
|
|
2016-01-31 12:13:44 -05:00
|
|
|
RSSI rssi {
|
|
|
|
{ 21 * 8, 0, 6 * 8, 4 },
|
|
|
|
};
|
|
|
|
|
|
|
|
Channel channel {
|
|
|
|
{ 21 * 8, 5, 6 * 8, 4 },
|
|
|
|
};
|
|
|
|
|
|
|
|
Audio audio {
|
|
|
|
{ 21 * 8, 10, 6 * 8, 4 },
|
|
|
|
};
|
|
|
|
|
|
|
|
FrequencyField field_frequency {
|
|
|
|
{ 5 * 8, 0 * 16 },
|
|
|
|
};
|
|
|
|
|
|
|
|
LNAGainField field_lna {
|
|
|
|
{ 15 * 8, 0 * 16 }
|
|
|
|
};
|
|
|
|
|
2016-04-12 13:48:24 -04:00
|
|
|
VGAGainField field_vga {
|
|
|
|
{ 18 * 8, 0 * 16 }
|
2016-01-31 12:13:44 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
OptionsField options_modulation {
|
|
|
|
{ 0 * 8, 0 * 16 },
|
|
|
|
4,
|
|
|
|
{
|
2016-02-01 12:12:55 -05:00
|
|
|
{ " AM ", toUType(ReceiverModel::Mode::AMAudio) },
|
|
|
|
{ "NFM ", toUType(ReceiverModel::Mode::NarrowbandFMAudio) },
|
|
|
|
{ "WFM ", toUType(ReceiverModel::Mode::WidebandFMAudio) },
|
|
|
|
{ "SPEC", toUType(ReceiverModel::Mode::SpectrumAnalysis) },
|
2016-01-31 12:13:44 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
NumberField field_volume {
|
|
|
|
{ 28 * 8, 0 * 16 },
|
|
|
|
2,
|
|
|
|
{ 0, 99 },
|
|
|
|
1,
|
|
|
|
' ',
|
|
|
|
};
|
2017-11-28 02:52:04 -05:00
|
|
|
|
|
|
|
Text text_ctcss {
|
|
|
|
{ 19 * 8, 1 * 16, 11 * 8, 1 * 16 },
|
|
|
|
""
|
|
|
|
};
|
2016-01-31 12:13:44 -05:00
|
|
|
|
2016-11-26 19:50:44 -05:00
|
|
|
std::unique_ptr<Widget> options_widget { };
|
2016-02-02 16:42:00 -05:00
|
|
|
|
2016-04-30 16:56:54 -04:00
|
|
|
RecordView record_view {
|
|
|
|
{ 0 * 8, 2 * 16, 30 * 8, 1 * 16 },
|
2022-03-28 23:53:09 -04:00
|
|
|
u"AUD",
|
|
|
|
RecordView::FileType::WAV,
|
|
|
|
4096,
|
|
|
|
4
|
2016-04-22 15:30:02 -04:00
|
|
|
};
|
|
|
|
|
2018-04-18 17:44:41 -04:00
|
|
|
spectrum::WaterfallWidget waterfall { true };
|
2016-01-31 12:13:44 -05:00
|
|
|
|
|
|
|
void on_tuning_frequency_changed(rf::Frequency f);
|
|
|
|
void on_baseband_bandwidth_changed(uint32_t bandwidth_hz);
|
2016-02-02 16:39:02 -05:00
|
|
|
void on_modulation_changed(const ReceiverModel::Mode modulation);
|
2016-01-31 12:13:44 -05:00
|
|
|
void on_show_options_frequency();
|
|
|
|
void on_show_options_rf_gain();
|
2016-02-02 16:42:00 -05:00
|
|
|
void on_show_options_modulation();
|
2016-01-31 12:13:44 -05:00
|
|
|
void on_frequency_step_changed(rf::Frequency f);
|
|
|
|
void on_reference_ppm_correction_changed(int32_t v);
|
|
|
|
void on_headphone_volume_changed(int32_t v);
|
|
|
|
void on_edit_frequency();
|
2016-02-02 14:02:07 -05:00
|
|
|
|
2016-02-02 17:26:00 -05:00
|
|
|
void remove_options_widget();
|
|
|
|
void set_options_widget(std::unique_ptr<Widget> new_widget);
|
|
|
|
|
2016-02-02 16:39:02 -05:00
|
|
|
void update_modulation(const ReceiverModel::Mode modulation);
|
2017-05-18 06:06:11 -04:00
|
|
|
|
2018-04-19 15:50:32 -04:00
|
|
|
//void squelched();
|
2017-11-28 02:52:04 -05:00
|
|
|
void handle_coded_squelch(const uint32_t value);
|
2017-05-18 06:06:11 -04:00
|
|
|
|
2018-04-19 15:50:32 -04:00
|
|
|
/*MessageHandlerRegistration message_handler_squelch_signal {
|
2017-05-18 06:06:11 -04:00
|
|
|
Message::ID::RequestSignal,
|
|
|
|
[this](const Message* const p) {
|
|
|
|
(void)p;
|
|
|
|
this->squelched();
|
|
|
|
}
|
2018-04-19 15:50:32 -04:00
|
|
|
};*/
|
2017-11-28 02:52:04 -05:00
|
|
|
|
|
|
|
MessageHandlerRegistration message_handler_coded_squelch {
|
|
|
|
Message::ID::CodedSquelch,
|
|
|
|
[this](const Message* const p) {
|
|
|
|
const auto message = *reinterpret_cast<const CodedSquelchMessage*>(p);
|
|
|
|
this->handle_coded_squelch(message.value);
|
|
|
|
}
|
|
|
|
};
|
2015-12-02 00:30:52 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace ui */
|
|
|
|
|
2015-12-08 18:28:33 -05:00
|
|
|
#endif/*__ANALOG_AUDIO_APP_H__*/
|