2017-03-14 07:24:04 +00:00
/*
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
* Copyright (C) 2016 Furrtek
2024-02-10 09:56:50 -06:00
* Copyright (C) 2024 Mark Thompson
2017-03-14 07:24:04 +00: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 "ui_mictx.hpp"
#include "audio.hpp"
2023-07-08 13:04:12 -07:00
#include "baseband_api.hpp"
#include "irq_controls.hpp"
2023-07-17 14:31:25 -05:00
#include "ui_freqman.hpp"
2018-02-01 11:17:51 +00:00
#include "portapack_hal.hpp"
2017-03-14 07:24:04 +00:00
#include "string_format.hpp"
2023-07-08 13:04:12 -07:00
#include "tonesets.hpp"
#include "ui_tone_key.hpp"
#include "wm8731.hpp"
2024-02-04 00:57:45 +01:00
#include "radio.hpp"
2017-03-14 07:24:04 +00:00
#include <cstring>
2017-11-09 20:02:34 +00:00
using namespace tonekey ;
2017-03-14 07:24:04 +00:00
using namespace portapack ;
2023-07-08 13:04:12 -07:00
using wolfson :: wm8731 :: WM8731 ;
2017-03-14 07:24:04 +00:00
2023-05-19 08:16:05 +12:00
WM8731 audio_codec_wm8731 { i2c0 , 0x1a };
2022-03-05 21:39:53 +01:00
2017-03-14 07:24:04 +00:00
namespace ui {
void MicTXView :: focus () {
2023-05-19 08:16:05 +12:00
switch ( focused_ui ) {
case 0 :
field_frequency . focus ();
break ;
case 1 :
field_rxfrequency . focus ();
break ;
default :
2023-10-31 17:31:10 -05:00
check_va . focus ();
2023-05-19 08:16:05 +12:00
break ;
}
2017-03-14 07:24:04 +00:00
}
void MicTXView :: update_vumeter () {
2023-05-19 08:16:05 +12:00
vumeter . set_value ( audio_level );
2017-03-14 07:24:04 +00:00
}
2023-10-31 17:31:10 -05:00
void MicTXView :: update_tx_icon () {
2024-05-27 21:02:52 +02:00
tx_icon . set_foreground ( transmitting ? Theme :: getInstance () -> fg_red -> foreground : Theme :: getInstance () -> bg_darkest -> background );
tx_icon . set_background ( transmitting ? Theme :: getInstance () -> fg_yellow -> foreground : Theme :: getInstance () -> bg_darkest -> background );
2023-10-31 17:31:10 -05:00
}
2017-11-09 20:02:34 +00:00
void MicTXView :: on_tx_progress ( const bool done ) {
2023-05-19 08:16:05 +12:00
// Roger beep played, stop transmitting
if ( done )
set_tx ( false );
2017-11-09 20:02:34 +00:00
}
2023-10-31 17:31:10 -05:00
uint8_t MicTXView :: shift_bits ( void ) {
uint8_t shift_bits_s16 { 4 }; // shift bits factor to the captured ADC S16 audio sample.
if ( audio :: debug :: codec_name () == "WM8731" ) {
switch ( ak4951_alc_and_wm8731_boost_GUI ) {
case 0 : // +12 dB’ s respect reference level orig fw 1.5.x fw FM : when +20dB's boost ON) and shift bits (>>8),
shift_bits_s16 = 6 ; // now mic-boost on (+20dBs) and shift bits (>>6), +20+12=32 dB’ s (orig fw +20 dBs+ 0dBs)=> +12dB's respect ref.
break ;
case 1 : // +06 dB’ s reference level, (when +20dB's boost ON)
shift_bits_s16 = 7 ; // now mic-boost on (+20dBs) and shift bits (>>7), +20+06=26 dB’ s (orig fw +20 dBs+ 0dBs) => +06dB's respect ref.
break ;
case 2 :
shift_bits_s16 = 4 ; // +04 dB’ s respect ref level, (when +20dB's boost OFF)
break ; // now mic-boost off (+00dBs) shift bits (4) (+0+24dB's)=24 dBs => +04dB's respect ref.
case 3 :
shift_bits_s16 = 5 ; // -02 dB’ s respect ref level, (when +20dB's boost OFF)
break ; // now mic-boost off (+00dBs) shift bits (5) (+0+18dB's)=18 dBs => -02dB's respect ref.
case 4 :
shift_bits_s16 = 6 ; // -08 dB’ s respect ref level, (when +20dB's boost OFF)
break ; // now mic-boost off (+00dBs) shift bits (6) (+0+12dB's)=12 dBs => -08dB's respect ref.
}
} else {
shift_bits_s16 = 8 ; // Initialized default fixed >>8_FM for FM tx mod, shift audio data for AK4951, using top 8 bits s16 data (>>8)
}
return shift_bits_s16 ;
}
2017-11-09 20:02:34 +00:00
void MicTXView :: configure_baseband () {
2023-06-11 11:47:13 -07:00
// TODO: Can this use the transmitter model instead?
2023-05-19 08:16:05 +12:00
baseband :: set_audiotx_config (
sampling_rate / 20 , // Update vu-meter at 20Hz
transmitting ? transmitter_model . channel_bandwidth () : 0 ,
2023-10-31 17:31:10 -05:00
mic_gain_x10 / 10.0 ,
shift_bits (), // to be used in dsp_modulate
2024-01-30 13:55:32 -06:00
8 , // bits per sample
2023-05-19 08:16:05 +12:00
TONES_F2D ( tone_key_frequency ( tone_key_index ), sampling_rate ),
2023-10-31 17:31:10 -05:00
( mic_mod_index == MIC_MOD_AM ),
( mic_mod_index == MIC_MOD_DSB ),
( mic_mod_index == MIC_MOD_USB ),
( mic_mod_index == MIC_MOD_LSB ));
2017-03-14 07:24:04 +00:00
}
void MicTXView :: set_tx ( bool enable ) {
2023-05-19 08:16:05 +12:00
if ( enable ) {
if ( rx_enabled ) // If audio RX is enabled
rxaudio ( false ); // Then turn off audio RX
transmitting = true ;
configure_baseband ();
2023-06-11 11:47:13 -07:00
transmitter_model . set_target_frequency ( tx_frequency ); // Now, no need: transmitter_model.set_tx_gain(tx_gain), nor (rf_amp);
2023-10-08 17:50:31 +02:00
/* The max. Power Spectrum Densitiy in WFM with High tone mod level (80%) and high 32kHZ subtone as fmod. with max fdeviation 150k ,
BW aprox = 2 *(150K + 32K) = 364khz, then we just select the minimum TX LPF 1M75. */
transmitter_model . set_baseband_bandwidth ( 1'750'000 );
2023-05-19 08:16:05 +12:00
transmitter_model . enable ();
portapack :: pin_i2s0_rx_sda . mode ( 3 ); // This is already done in audio::init but gets changed by the CPLD overlay reprogramming
} else {
if ( transmitting && rogerbeep_enabled ) {
2024-03-21 04:14:54 -05:00
baseband :: request_roger_beep (); // Transmit the roger beep
transmitting = false ; // Flag the end of the transmission (transmitter will be disabled after the beep)
} else {
2023-05-19 08:16:05 +12:00
transmitting = false ;
configure_baseband ();
transmitter_model . disable ();
2023-10-31 17:31:10 -05:00
if ( rx_enabled ) {
rxaudio ( true ); // Turn back on audio RX
// TODO FIXME: this isn't working: vu meter isn't going to 0:
2023-10-22 01:13:32 +02:00
vumeter . set_value ( 0 ); // Reset vumeter
vumeter . dirty (); // Force to refresh vumeter.
}
2023-05-19 08:16:05 +12:00
}
}
2023-10-31 17:31:10 -05:00
update_tx_icon ();
2017-03-14 07:24:04 +00:00
}
2023-10-31 17:31:10 -05:00
bool MicTXView :: tx_button_held () {
const auto switches_state = get_switches_state ();
return switches_state [( size_t ) ui :: KeyEvent :: Select ];
};
2017-03-14 07:24:04 +00:00
void MicTXView :: do_timing () {
2023-05-19 08:16:05 +12:00
if ( va_enabled ) {
if ( ! transmitting ) {
// Attack
if ( audio_level >= va_level ) {
if (( attack_timer >> 8 ) >= attack_ms ) {
decay_timer = 0 ;
attack_timer = 0 ;
set_tx ( true );
} else {
attack_timer += lcd_frame_duration ;
}
} else {
attack_timer = 0 ;
}
} else {
// Decay
if ( audio_level < va_level ) {
if (( decay_timer >> 8 ) >= decay_ms ) {
decay_timer = 0 ;
attack_timer = 0 ;
2023-10-31 17:31:10 -05:00
if ( ! button_touch && ! tx_button_held ())
set_tx ( false );
2023-05-19 08:16:05 +12:00
} else {
decay_timer += lcd_frame_duration ;
}
} else {
decay_timer = 0 ;
}
}
} else {
// Check for PTT release
2023-10-31 17:31:10 -05:00
if ( transmitting && ! button_touch && ! tx_button_held ())
2023-05-19 08:16:05 +12:00
set_tx ( false );
}
2017-03-14 07:24:04 +00:00
}
2023-10-31 17:31:10 -05:00
void MicTXView :: rxaudio ( bool enable ) {
if ( enable ) {
2023-05-19 08:16:05 +12:00
audio :: input :: stop ();
baseband :: shutdown ();
2021-03-21 20:11:40 -05:00
2023-10-31 17:31:10 -05:00
switch ( mic_mod_index ) {
case MIC_MOD_NFM : // NFM BW:8k5 or 11k / FM BW 16k
baseband :: run_image ( portapack :: spi_flash :: image_tag_nfm_audio );
receiver_model . set_modulation ( ReceiverModel :: Mode :: NarrowbandFMAudio );
// receiver_model.set_nbfm_configuration(n); is called above, depending user's selection (8k5, 11k, 16k).
break ;
2025-05-25 20:04:08 +02:00
case MIC_MOD_WFM : // WFM, BW 200Khz aprox, or the two new addional BW filters (180k, 80k)
2023-05-19 08:16:05 +12:00
baseband :: run_image ( portapack :: spi_flash :: image_tag_wfm_audio );
receiver_model . set_modulation ( ReceiverModel :: Mode :: WidebandFMAudio );
2023-10-31 17:31:10 -05:00
// receiver_model.set_wfm_configuration(n); is called above, depending user's selection (200k, 180k, 0k).
break ;
case MIC_MOD_AM :
case MIC_MOD_DSB :
case MIC_MOD_USB :
case MIC_MOD_LSB :
baseband :: run_image ( portapack :: spi_flash :: image_tag_am_audio );
receiver_model . set_modulation ( ReceiverModel :: Mode :: AMAudio ); // that AM demodulation engine is common to all Amplitude mod : AM/USB/LSB/DSB (2,3,4,5)
if ( options_mode . selected_index () < 5 ) // We will be called here with 2,3,4,5. We treat here demod. filter 2,3,4; (excluding DSB-C case (5) it is treated more down).
receiver_model . set_am_configuration ( options_mode . selected_index () - 1 ); // selecting proper filter(2,3,4). 2-1=1=>6k-AM(1), 3-1=2=>+3k-USB(2), 4-1=3=>-3K-LSB(3),
break ;
2023-05-19 08:16:05 +12:00
}
2023-06-17 10:15:46 -07:00
2023-10-31 17:31:10 -05:00
receiver_model . set_target_frequency ( bool_same_F_tx_rx_enabled ? tx_frequency : rx_frequency );
2023-05-19 08:16:05 +12:00
receiver_model . enable ();
audio :: output :: start ();
} else { // These incredibly convoluted steps are required for the vumeter to reappear when stopping RX.
receiver_model . set_modulation ( ReceiverModel :: Mode :: NarrowbandFMAudio ); // This fixes something with AM RX...
receiver_model . disable ();
baseband :: shutdown ();
baseband :: run_image ( portapack :: spi_flash :: image_tag_mic_tx );
audio :: output :: stop ();
2023-10-21 17:31:17 +02:00
audio :: input :: start ( ak4951_alc_and_wm8731_boost_GUI , mic_to_HP_enabled ); // set up ALC mode (AK4951) or set up mic_boost ON/OFF (WM8731). and the check box "Hear Mic"
2023-05-19 08:16:05 +12:00
portapack :: pin_i2s0_rx_sda . mode ( 3 );
configure_baseband ();
}
2020-08-07 00:19:37 -03:00
}
2023-10-31 17:31:10 -05:00
void MicTXView :: set_rxbw_options ( void ) {
using option_t = std :: pair < std :: string , int32_t > ;
using options_t = std :: vector < option_t > ;
options_t rxbw ; // Aux structure to change dynamically field_rxbw contents
switch ( mic_mod_index ) {
case MIC_MOD_NFM :
freqman_set_bandwidth_option ( NFM_MODULATION , field_rxbw ); // restore dynamic field_rxbw value with NFM options from freqman_db.cpp
field_rxbw . set_by_value ( receiver_model . nbfm_configuration ());
break ;
case MIC_MOD_WFM :
freqman_set_bandwidth_option ( WFM_MODULATION , field_rxbw ); // restore dynamic field_rxbw value with WFM options from freqman_db.cpp
field_rxbw . set_by_value ( receiver_model . wfm_configuration ());
break ;
case MIC_MOD_AM :
rxbw . emplace_back ( "DSB 9k" , 0 ); // we offer in AM DSB two audio BW 9k / 6k.
rxbw . emplace_back ( "DSB 6k" , 1 );
field_rxbw . set_options ( rxbw ); // store that aux GUI option to the field_rxbw.
break ;
case MIC_MOD_DSB :
rxbw . emplace_back ( "USB+3k" , 0 ); // added dynamically two options (index 0,1) to that DSB-SC case to the field_rxbw value.
rxbw . emplace_back ( "LSB-3k" , 1 );
field_rxbw . set_options ( rxbw ); // store that aux GUI option to the field_rxbw.
break ;
case MIC_MOD_USB :
rxbw . emplace_back ( "USB+3k" , 0 ); // locked a fixed option, to display it.
field_rxbw . set_options ( rxbw ); // store that aux GUI option to the field_rxbw.
break ;
case MIC_MOD_LSB :
rxbw . emplace_back ( "LSB-3k" , 0 ); // locked a fixed option, to display it.
field_rxbw . set_options ( rxbw ); // store that aux GUI option to the field_rxbw.
break ;
}
}
2024-07-06 13:34:09 +02:00
void MicTXView :: set_rxbw_defaults ( bool use_app_settings ) { // Initially in that function we set up rxbw, but now also txbw.
2023-10-31 17:31:10 -05:00
if ( use_app_settings ) {
field_bw . set_value ( transmitter_model . channel_bandwidth () / 1000 );
field_rxbw . set_by_value ( rxbw_index );
} else if ( mic_mod_index == MIC_MOD_NFM ) {
2024-07-06 13:34:09 +02:00
field_bw . set_value ( 10 ); // NFM TX bw 10k, RX bw 16k (index 2) default
field_bw . set_range ( 1 , 60 ); // In NFM , FM , we are limitting index modulation range (0.08 ..5) ; (Ex max dev 60khz/12k = 5)
field_bw . set_step ( 1 );
field_rxbw . set_by_value ( 2 ); // 16k from the three options (8k5,11k,16k)
2023-10-31 17:31:10 -05:00
} else if ( mic_mod_index == MIC_MOD_WFM ) {
2024-07-06 13:34:09 +02:00
field_bw . set_value ( 75 ); // WFM TX bw 75K, RX bw 200k (index 0) default
field_bw . set_range ( 1 , 150 ); // In our case Mod. Index range (1,67 ...12,5) ; 150k/12k=12,5
field_bw . set_step ( 1 );
2023-10-31 17:31:10 -05:00
field_rxbw . set_by_value ( 0 );
2024-07-06 13:34:09 +02:00
} else if (( mic_mod_index == MIC_MOD_USB ) | ( mic_mod_index == MIC_MOD_LSB )) {
field_bw . set_value ( 3 ); // In SSB by default let's limit TX_BW to 3kHz.
2024-07-08 11:11:12 +02:00
field_bw . set_range ( 2 , 3 ); // User TXBW GUI range to modify that SSB TX_BW to limit SSB radiated spectrum.
2024-07-06 13:34:09 +02:00
field_bw . set_step ( 1 );
2023-10-31 17:31:10 -05:00
}
// field_bw is hidden in other modulation cases
}
void MicTXView :: update_receiver_rxbw ( void ) {
// In Previous fw versions, that nbfm_configuration(n) was done in any mode (FM/AM/SSB/DSB)...strictly speaking only need it in (NFM/FM)
// In AM TX mode, we will allow both independent RX audio BW : AM 9K (9K00AE3 / AM 6K (6K00AE3). (In AM option v can be 0 (9k), 1 (6k)
// In DSB-SC TX mode, we will allow both independent RX SSB demodulation (USB / LSB side band). in that submenu, v is 0 (SSB1 USB) or 1 (SSB2 LSB)
switch ( mic_mod_index ) {
case MIC_MOD_NFM :
receiver_model . set_nbfm_configuration ( rxbw_index ); // we are in NFM/FM case, we need to select proper NFM/FM RX channel filter, NFM BW 8K5(0), NFM BW 11K(1), FM BW 16K (2)
break ;
case MIC_MOD_WFM :
2025-05-25 20:04:08 +02:00
receiver_model . set_wfm_configuration ( rxbw_index ); // we are in WFM case, we need to select proper WFB RX BW filter, WFM BW 200K(0), WFM BW 180K(1), WFM BW 80K(2)
2023-10-31 17:31:10 -05:00
break ;
case MIC_MOD_AM :
receiver_model . set_am_configuration ( rxbw_index ); // we are in AM TX mode, we need to select proper AM full path config AM-9K filter. 0+0 =>AM-9K(0), 0+1=1 =>AM-6K(1),
break ;
case MIC_MOD_USB :
case MIC_MOD_LSB :
break ; // change can't happen in these modes because there's only one BW choice
case MIC_MOD_DSB :
receiver_model . set_am_configuration ( rxbw_index + 2 ); // we are in DSB-SC TX mode, we need to select proper SSB filter. 0+2 =>usb(2), 1+2=3 =>lsb(3),
break ;
}
2020-08-22 14:57:55 +08:00
}
2017-03-14 07:24:04 +00:00
MicTXView :: MicTXView (
2023-05-19 08:16:05 +12:00
NavigationView & nav ) {
portapack :: pin_i2s0_rx_sda . mode ( 3 ); // This is already done in audio::init but gets changed by the CPLD overlay reprogramming
2020-08-07 00:19:37 -03:00
2023-05-19 08:16:05 +12:00
baseband :: run_image ( portapack :: spi_flash :: image_tag_mic_tx );
2022-09-28 22:42:33 +02:00
2023-10-31 17:31:10 -05:00
bool wm = ( audio :: debug :: codec_name () == "WM8731" );
add_children ({ & labels_both ,
wm ? & labels_WM8731 : & labels_AK4951 , // enable ALC if AK4951
& vumeter ,
& options_gain , // MIC GAIN float factor on the GUI.
wm ? & options_wm8731_boost_mode : & options_ak4951_alc_mode ,
& check_va ,
& field_va_level ,
& field_va_attack ,
& field_va_decay ,
& field_bw ,
& tx_view , // it already integrates previous rfgain, rfamp.
& options_mode ,
& field_frequency ,
& options_tone_key ,
& check_rogerbeep ,
& check_mic_to_HP , // check box to activate "hear mic"
& check_common_freq_tx_rx , // added to handle common or separate freq- TX/RX
& check_rxactive ,
& field_volume ,
& field_rxbw ,
& field_squelch ,
& field_rxfrequency ,
& field_rxlna ,
& field_rxvga ,
& field_rxamp ,
2024-03-09 17:36:48 -06:00
& field_tx_iq_phase_cal ,
2023-10-31 17:31:10 -05:00
& tx_button ,
& tx_icon });
2022-10-02 00:51:12 +02:00
2023-10-31 17:31:10 -05:00
set_rxbw_options ();
set_rxbw_defaults ( settings_ . loaded ());
2020-08-22 14:57:55 +08:00
2023-05-19 08:16:05 +12:00
tone_keys_populate ( options_tone_key );
2023-10-31 17:31:10 -05:00
options_tone_key . set_selected_index ( tone_key_index );
2023-05-19 08:16:05 +12:00
options_tone_key . on_change = [ this ]( size_t i , int32_t ) {
tone_key_index = i ;
};
2023-10-31 17:31:10 -05:00
check_rogerbeep . set_value ( rogerbeep_enabled );
check_rogerbeep . on_select = [ this ]( Checkbox & , bool v ) {
rogerbeep_enabled = v ;
};
field_rxlna . set_value ( receiver_model . lna ());
field_rxlna . on_change = [ this ]( int32_t v ) {
receiver_model . set_lna ( v );
};
field_rxvga . set_value ( receiver_model . vga ());
field_rxvga . on_change = [ this ]( int32_t v ) {
receiver_model . set_vga ( v );
};
field_rxamp . set_value ( receiver_model . rf_amp ());
field_rxamp . on_change = [ this ]( int32_t v ) {
receiver_model . set_rf_amp ( v );
};
2022-10-16 19:01:05 +02:00
2024-02-04 00:57:45 +01:00
radio :: set_tx_max283x_iq_phase_calibration ( iq_phase_calibration_value );
2024-03-09 17:36:48 -06:00
field_tx_iq_phase_cal . set_range ( 0 , hackrf_r9 ? 63 : 31 ); // max2839 has 6 bits [0..63], max2837 has 5 bits [0..31]
field_tx_iq_phase_cal . set_value ( iq_phase_calibration_value );
field_tx_iq_phase_cal . on_change = [ this ]( int32_t v ) {
iq_phase_calibration_value = v ;
radio :: set_tx_max283x_iq_phase_calibration ( iq_phase_calibration_value );
};
2024-02-04 00:57:45 +01:00
2023-05-19 08:16:05 +12:00
options_gain . on_change = [ this ]( size_t , int32_t v ) {
2023-10-31 17:31:10 -05:00
mic_gain_x10 = v ;
2023-05-19 08:16:05 +12:00
configure_baseband ();
};
2023-10-31 17:31:10 -05:00
options_gain . set_by_value ( mic_gain_x10 ); // x1.0 preselected default.
field_rxbw . on_change = [ this ]( size_t , int32_t v ) {
rxbw_index = v ;
update_receiver_rxbw ();
};
field_rxbw . set_by_value ( rxbw_index );
field_squelch . set_value ( receiver_model . squelch_level ());
field_squelch . on_change = [ this ]( int32_t v ) {
receiver_model . set_squelch_level ( v );
};
2022-10-16 19:01:05 +02:00
2023-05-19 08:16:05 +12:00
if ( audio :: debug :: codec_name () == "WM8731" ) {
options_wm8731_boost_mode . on_change = [ this ]( size_t , int8_t v ) {
2023-10-21 17:31:17 +02:00
ak4951_alc_and_wm8731_boost_GUI = v ; // 0..4, WM8731_boost dB's options, (combination boost on/off, and effective gain in captured data >>x)
audio :: input :: start ( ak4951_alc_and_wm8731_boost_GUI , mic_to_HP_enabled ); // Detected (WM8731), set up the proper wm_boost on/off, 0..4 (0,1) boost_on, (2,3,4) boost_off,and the check box "Hear Mic"
configure_baseband (); // to update in real time, sending msg, var-parameters >>shift_bits FM msg, to audio_tx from M0 to M4 Proc -
2023-05-19 08:16:05 +12:00
};
2023-10-31 17:31:10 -05:00
if ( ! settings_ . loaded ()) {
ak4951_alc_and_wm8731_boost_GUI = 3 ; // preset GUI index 3 as default WM -> -02 dB's
}
options_wm8731_boost_mode . set_selected_index ( ak4951_alc_and_wm8731_boost_GUI );
2023-05-19 08:16:05 +12:00
} else {
options_ak4951_alc_mode . on_change = [ this ]( size_t , int8_t v ) {
2023-10-21 17:31:17 +02:00
ak4951_alc_and_wm8731_boost_GUI = v ; // 0..11, AK4951 Mic -Automatic volume Level Control options,
audio :: input :: start ( ak4951_alc_and_wm8731_boost_GUI , mic_to_HP_enabled ); // Detected (AK4951) ==> Set up proper ALC mode from 0..11 options, and the check box "Hear Mic"
configure_baseband (); // sending fixed >>8_FM, var-parameters msg, to audiotx from this M0 to M4 process.
2023-05-19 08:16:05 +12:00
};
2023-10-31 17:31:10 -05:00
if ( ! settings_ . loaded ())
ak4951_alc_and_wm8731_boost_GUI = 0 ;
options_ak4951_alc_mode . set_selected_index ( ak4951_alc_and_wm8731_boost_GUI );
2023-05-19 08:16:05 +12:00
}
2022-10-16 19:01:05 +02:00
2023-10-31 17:31:10 -05:00
// WARNING: transmitter_model.set_target_frequency() and receiver_model.set_target_frequency() both update the same tuning freq, but one has an offset!
2023-06-11 11:47:13 -07:00
tx_frequency = transmitter_model . target_frequency ();
2023-05-19 08:16:05 +12:00
field_frequency . on_change = [ this ]( rf :: Frequency f ) {
tx_frequency = f ;
2023-10-31 17:31:10 -05:00
if ( ! rx_enabled )
2023-06-11 11:47:13 -07:00
transmitter_model . set_target_frequency ( f );
2023-10-31 17:31:10 -05:00
else if ( bool_same_F_tx_rx_enabled )
receiver_model . set_target_frequency ( f );
// else tuning freq will be updated when rx is enabled, transmitting starts, or when rx_frequency is changed (if rx_enabled)
2023-05-19 08:16:05 +12:00
};
field_frequency . on_edit = [ this , & nav ]() {
focused_ui = 0 ;
// TODO: Provide separate modal method/scheme?
auto new_view = nav . push < FrequencyKeypadView > ( tx_frequency );
new_view -> on_changed = [ this ]( rf :: Frequency f ) {
this -> field_frequency . set_value ( f );
};
};
2023-10-31 17:31:10 -05:00
field_frequency . set_value ( tx_frequency );
2022-10-29 16:02:08 +02:00
2023-10-31 17:31:10 -05:00
// TODO: would be nice if frequency step was configurable in this app
2025-09-13 12:38:29 +02:00
// but now, make it a bit lower
receiver_model . set_frequency_step ( 12'500 ); // set freq step to 12.5kHz
2023-10-31 17:31:10 -05:00
field_frequency . set_step ( receiver_model . frequency_step ());
2022-10-29 16:02:08 +02:00
2023-10-31 17:31:10 -05:00
// WARNING: transmitter_model.set_target_frequency() and receiver_model.set_target_frequency() both update the same tuning freq, but one has an offset!
2023-05-19 08:16:05 +12:00
field_rxfrequency . set_value ( rx_frequency );
field_rxfrequency . on_change = [ this ]( rf :: Frequency f ) { // available when field rxfrequency not hidden => user selected separated freq RX/TX-
rx_frequency = f ;
if ( rx_enabled )
2023-10-31 17:31:10 -05:00
receiver_model . set_target_frequency ( rx_frequency );
2023-05-19 08:16:05 +12:00
};
field_rxfrequency . on_edit = [ this , & nav ]() { // available when field rxfrequency not hidden => user selected separated freq RX/TX-
focused_ui = 1 ;
// TODO: Provide separate modal method/scheme?
auto new_view = nav . push < FrequencyKeypadView > ( rx_frequency );
new_view -> on_changed = [ this ]( rf :: Frequency f ) {
this -> field_rxfrequency . set_value ( f );
};
};
2020-08-22 14:57:55 +08:00
2023-10-31 17:31:10 -05:00
// TODO: would be nice if frequency step was configurable in this app
field_rxfrequency . set_step ( receiver_model . frequency_step ());
2020-08-22 14:57:55 +08:00
2023-10-31 17:31:10 -05:00
check_common_freq_tx_rx . on_select = [ this ]( Checkbox & , bool v ) {
bool_same_F_tx_rx_enabled = v ;
field_rxfrequency . hidden ( v );
set_dirty ();
receiver_model . set_target_frequency ( bool_same_F_tx_rx_enabled ? tx_frequency : rx_frequency ); // To go to the proper tuned freq. when toggling it
2023-05-19 08:16:05 +12:00
};
2023-10-31 17:31:10 -05:00
check_common_freq_tx_rx . set_value ( bool_same_F_tx_rx_enabled );
2020-08-24 01:53:34 +08:00
2023-10-31 17:31:10 -05:00
field_bw . on_change = [ this ]( uint32_t v ) {
transmitter_model . set_channel_bandwidth ( v * 1000 );
2023-05-19 08:16:05 +12:00
};
2023-10-31 17:31:10 -05:00
field_bw . set_value ( transmitter_model . channel_bandwidth () / 1000 ); // pre-default first time, TX deviation FM for NFM / FM
// now, no need direct update, field_rfgain, field_rfamp (it is done in ui_transmitter.cpp)
options_mode . on_change = [ this ]( size_t , int32_t v ) {
mic_mod_index = v ;
// update bw & tone key visibility - only visible in NFM/WFM modes
if (( mic_mod_index == MIC_MOD_NFM ) || ( mic_mod_index == MIC_MOD_WFM )) {
field_bw . hidden ( false );
options_tone_key . hidden ( false );
} else {
2024-07-06 13:34:09 +02:00
if (( mic_mod_index == MIC_MOD_USB ) || ( mic_mod_index == MIC_MOD_LSB )) {
field_bw . hidden ( false );
} else {
field_bw . hidden ( true );
}
2023-10-31 17:31:10 -05:00
options_tone_key . set_selected_index ( 0 );
options_tone_key . hidden ( true );
}
// update rogerbeep visibility - disable in USB/LSB modes
if (( mic_mod_index == MIC_MOD_USB ) || ( mic_mod_index == MIC_MOD_LSB )) {
check_rogerbeep . set_value ( false );
check_rogerbeep . hidden ( true );
} else {
check_rogerbeep . hidden ( false );
}
// update squelch visibility - only visible in NFM mode
field_squelch . hidden ( mic_mod_index != MIC_MOD_NFM );
// update bandwidth
set_rxbw_options ();
set_rxbw_defaults ( false );
field_rxbw . hidden ( false );
set_dirty (); // Refresh display
rxaudio ( rx_enabled ); // Update now if we have RX audio on
// configure_baseband();
};
options_mode . set_selected_index ( mic_mod_index );
check_mic_to_HP . on_select = [ this ]( Checkbox & , bool v ) {
mic_to_HP_enabled = v ;
if ( mic_to_HP_enabled ) { // When user click to "hear mic to HP", we will select the higher acoustic sound Option MODE ALC or BOOST-
audio :: input :: loopback_mic_to_hp_enable ();
if ( audio :: debug :: codec_name () == "WM8731" ) {
options_wm8731_boost_mode . set_selected_index ( 0 ); // In WM we always go to Boost +12 dB’ s respect reference level
} else if ( ak4951_alc_and_wm8731_boost_GUI == 0 ) // In AK we are changing only that ALC index =0, because in that option, there is no sound.
options_ak4951_alc_mode . set_selected_index ( 1 ); // alc_mode =0 , means no ALC,no DIGITAL filter block (by passed), and that mode has no loopback mode.
} else {
audio :: input :: loopback_mic_to_hp_disable ();
}
};
check_mic_to_HP . set_value ( mic_to_HP_enabled );
2023-05-19 08:16:05 +12:00
tx_button . on_select = [ this ]( Button & ) {
2023-10-31 17:31:10 -05:00
if ( ! transmitting ) {
2023-05-19 08:16:05 +12:00
set_tx ( true );
}
};
2020-08-24 01:53:34 +08:00
2023-05-19 08:16:05 +12:00
tx_button . on_touch_release = [ this ]( Button & ) {
2023-10-31 17:31:10 -05:00
button_touch = false ;
2023-05-19 08:16:05 +12:00
};
2022-09-28 22:42:33 +02:00
2023-05-19 08:16:05 +12:00
tx_button . on_touch_press = [ this ]( Button & ) {
2023-10-31 17:31:10 -05:00
button_touch = true ;
2023-05-19 08:16:05 +12:00
};
2023-10-31 17:31:10 -05:00
field_va_level . on_change = [ this ]( int32_t v ) {
va_level = v ;
vumeter . set_mark ( v );
};
field_va_level . set_value ( va_level );
field_va_attack . set_value ( attack_ms );
field_va_attack . on_change = [ this ]( int32_t v ) {
attack_ms = v ;
};
field_va_decay . set_value ( decay_ms );
field_va_decay . on_change = [ this ]( int32_t v ) {
decay_ms = v ;
};
check_va . on_select = [ this ]( Checkbox & , bool v ) {
va_enabled = v ;
if ( va_enabled )
check_rxactive . set_value ( false ); // Disallow RX-audio in VOX mode (for now) - Future TODO: Should allow VOX during RX audio
};
check_va . set_value ( va_enabled );
2023-06-19 12:05:08 -07:00
// These shouldn't be necessary, but because
// this app uses both transmitter_model and directly
// configures the baseband, these end up being required.
transmitter_model . set_sampling_rate ( sampling_rate );
transmitter_model . set_baseband_bandwidth ( 1750000 );
2023-05-19 08:16:05 +12:00
set_tx ( false );
audio :: set_rate ( audio :: Rate :: Hz_24000 );
2023-10-21 17:31:17 +02:00
audio :: input :: start ( ak4951_alc_and_wm8731_boost_GUI , mic_to_HP_enabled ); // set up ALC mode (AK4951) or set up mic_boost ON/OFF (WM8731). and the check box "Hear Mic"
2023-10-31 17:31:10 -05:00
// Workaround for bad RX reception when app first started -- shouldn't be necessary:
// Trigger receiver to update modulation.
if ( rx_enabled )
receiver_model . set_squelch_level ( receiver_model . squelch_level ());
2024-04-05 23:29:18 +02:00
check_rxactive . on_select = [ this ]( Checkbox & , bool v ) {
// vumeter.set_value(0); //Start with a clean vumeter
rx_enabled = v ;
check_mic_to_HP . hidden ( rx_enabled ); // Toggle Hide / show "Hear Mic" checkbox depending if we activate or not the receiver. (if RX on => no visible "Mic Hear" option)
if (( rx_enabled ) && ( transmitting ))
check_mic_to_HP . set_value ( transmitting ); // Once we activate the "Rx audio" in reception time we disable "Hear Mic", but we allow it again in TX time.
if ( rx_enabled )
check_va . set_value ( false ); // Disallow voice activation during RX audio (for now) - Future TODO: Should allow VOX during RX audio
rxaudio ( v ); // Activate-Deactivate audio RX (receiver) accordingly
set_dirty (); // Refresh interface
};
check_rxactive . set_value ( rx_enabled );
2017-03-14 07:24:04 +00:00
}
2023-07-04 16:26:26 -07:00
MicTXView :: MicTXView (
NavigationView & nav ,
ReceiverModel :: settings_t override )
: MicTXView ( nav ) {
2024-03-30 12:57:43 -05:00
// Settings to override when launched from another app (versus from AppSettings .ini file)
2023-07-04 16:26:26 -07:00
// Try to use the modulation/bandwidth from RX settings.
// TODO: These concepts should be merged so there's only one.
switch ( override . mode ) {
case ReceiverModel :: Mode :: AMAudio :
2023-10-31 17:31:10 -05:00
options_mode . set_selected_index ( MIC_MOD_AM );
2023-07-04 16:26:26 -07:00
break ;
case ReceiverModel :: Mode :: NarrowbandFMAudio :
2023-10-31 17:31:10 -05:00
options_mode . set_selected_index ( MIC_MOD_NFM );
2023-07-04 16:26:26 -07:00
break ;
case ReceiverModel :: Mode :: WidebandFMAudio :
2023-10-31 17:31:10 -05:00
options_mode . set_selected_index ( MIC_MOD_WFM );
2023-07-04 16:26:26 -07:00
break ;
// Unsupported modulations.
case ReceiverModel :: Mode :: SpectrumAnalysis :
case ReceiverModel :: Mode :: Capture :
default :
break ;
}
2024-03-30 12:57:43 -05:00
field_frequency . set_value ( override . frequency_app_override );
2023-10-31 17:31:10 -05:00
check_common_freq_tx_rx . set_value ( true ); // freq passed from other app is in tx_frequency, so set rx_frequency=tx_frequency
2023-07-04 16:26:26 -07:00
// TODO: bandwidth selection is tied too tightly to the UI
// controls. It's not possible to set the bandwidth here without
// refactoring. Also options_mode seems to have a category error.
}
2017-03-14 07:24:04 +00:00
MicTXView ::~ MicTXView () {
2023-05-19 08:16:05 +12:00
audio :: input :: stop ();
2023-10-22 19:10:26 +02:00
if ( rx_enabled ) { // Also turn off both (audio rx if enabled, and disable mic_loop to HP)
2023-05-19 08:16:05 +12:00
rxaudio ( false );
2023-10-22 19:10:26 +02:00
audio :: input :: loopback_mic_to_hp_disable (); // Leave Mic audio off in the main menu (as original audio path, otherwise we had No audio in next "Audio App")
}
2023-10-31 17:31:10 -05:00
transmitter_model . set_target_frequency ( tx_frequency ); // Set tx_frequency here to be saved in app_settings (might not match rx_frequency)
transmitter_model . disable ();
2023-06-17 07:54:52 -07:00
baseband :: shutdown ();
2017-03-14 07:24:04 +00:00
}
2023-05-19 08:16:05 +12:00
} // namespace ui