2015-08-04 13:03:18 -04:00
/*
* Copyright ( C ) 2015 Jared Boone , ShareBrained Technology , Inc .
2016-08-24 08:44:57 -04:00
* Copyright ( C ) 2016 Furrtek
2015-08-04 13:03:18 -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 "portapack_persistent_memory.hpp"
2023-06-05 14:09:50 -04:00
# include "audio.hpp"
2022-05-28 16:55:18 -04:00
# include "crc.hpp"
2023-03-31 08:05:33 -04:00
# include "file.hpp"
2023-07-02 12:35:34 -04:00
# include "hal.h"
2023-06-07 18:52:29 -04:00
# include "irq_controls.hpp"
2023-07-02 12:35:34 -04:00
# include "memory_map.hpp"
# include "portapack.hpp"
2023-06-22 11:35:21 -04:00
# include "string_format.hpp"
# include "ui_styles.hpp"
# include "ui_painter.hpp"
2023-07-02 12:35:34 -04:00
# include "utility.hpp"
# include <algorithm>
# include <string>
# include <fstream>
# include <utility>
2023-06-22 11:35:21 -04:00
# include <ch.h>
2023-11-19 09:08:29 -05:00
# include <hal.h>
2023-06-22 11:35:21 -04:00
2023-03-31 08:05:33 -04:00
using namespace std ;
2015-08-04 13:03:18 -04:00
namespace portapack {
2023-05-18 16:16:05 -04:00
namespace persistent_memory {
2023-06-11 14:47:13 -04:00
constexpr rf : : Frequency target_frequency_reset_value { 100000000 } ;
2023-05-18 16:16:05 -04:00
using ppb_range_t = range_t < ppb_t > ;
constexpr ppb_range_t ppb_range { - 99000 , 99000 } ;
constexpr ppb_t ppb_reset_value { 0 } ;
using tone_mix_range_t = range_t < int32_t > ;
constexpr tone_mix_range_t tone_mix_range { 10 , 99 } ;
constexpr int32_t tone_mix_reset_value { 20 } ;
using afsk_freq_range_t = range_t < int32_t > ;
constexpr afsk_freq_range_t afsk_freq_range { 1 , 4000 } ;
constexpr int32_t afsk_mark_reset_value { 1200 } ;
constexpr int32_t afsk_space_reset_value { 2200 } ;
using modem_baudrate_range_t = range_t < int32_t > ;
constexpr modem_baudrate_range_t modem_baudrate_range { 50 , 9600 } ;
constexpr int32_t modem_baudrate_reset_value { 1200 } ;
2023-07-02 12:35:34 -04:00
/*
using modem_bw_range_t = range_t < int32_t > ;
constexpr modem_bw_range_t modem_bw_range { 1000 , 50000 } ;
constexpr int32_t modem_bw_reset_value { 15000 } ;
*/
2023-05-18 16:16:05 -04:00
using modem_repeat_range_t = range_t < int32_t > ;
constexpr modem_repeat_range_t modem_repeat_range { 1 , 99 } ;
constexpr int32_t modem_repeat_reset_value { 5 } ;
using clkout_freq_range_t = range_t < uint32_t > ;
2023-12-26 01:11:14 -05:00
constexpr clkout_freq_range_t clkout_freq_range { 4 , 60000 } ; // Min. CLK out of Si5351A/B/C-B is 2.5khz , but in our application -intermediate freq 800Mhz-,Min working CLK=4khz.
2023-07-02 12:35:34 -04:00
constexpr uint16_t clkout_freq_reset_value { 10000 } ;
2023-05-18 16:16:05 -04:00
enum data_structure_version_enum : uint32_t {
2023-07-27 10:45:39 -04:00
VERSION_CURRENT = 0x10000005 ,
2023-05-18 16:16:05 -04:00
} ;
static const uint32_t TOUCH_CALIBRATION_MAGIC = 0x074af82f ;
2023-07-02 12:35:34 -04:00
/* UI config.
* NB : Will be default init - override in defaults ( ) . */
2023-05-18 16:16:05 -04:00
struct ui_config_t {
2023-07-02 12:35:34 -04:00
uint16_t clkout_freq ;
// NB: bitsfields have to be the same type or the compiler will
// split into a new byte hence uint8_t for these booleans.
uint8_t backlight_timeout : 3 ;
uint8_t enable_backlight_timeout : 1 ;
uint8_t show_gui_return_icon : 1 ;
uint8_t load_app_settings : 1 ;
uint8_t save_app_settings : 1 ;
uint8_t show_large_qr_code : 1 ;
bool disable_touchscreen : 1 ;
bool hide_clock : 1 ;
bool clock_show_date : 1 ;
bool clkout_enabled : 1 ;
bool UNUSED_1 : 1 ;
bool stealth_mode : 1 ;
bool config_login : 1 ;
bool config_splash : 1 ;
2023-06-17 17:15:21 -04:00
} ;
2023-07-02 12:35:34 -04:00
static_assert ( sizeof ( ui_config_t ) = = sizeof ( uint32_t ) ) ;
2023-06-17 17:15:21 -04:00
2023-06-23 19:13:39 -04:00
/* Additional UI config.
* NB : Will be default init - override in defaults ( ) . */
struct ui_config2_t {
/* Top icon bar */
bool hide_speaker : 1 ;
bool hide_converter : 1 ;
bool hide_stealth : 1 ;
bool hide_camera : 1 ;
bool hide_sleep : 1 ;
bool hide_bias_tee : 1 ;
bool hide_clock : 1 ;
bool hide_sd_card : 1 ;
2023-06-26 02:08:09 -04:00
bool hide_mute : 1 ;
2023-07-02 12:35:34 -04:00
bool UNUSED_1 : 1 ;
bool UNUSED_2 : 1 ;
bool UNUSED_3 : 1 ;
bool UNUSED_4 : 1 ;
bool UNUSED_5 : 1 ;
bool UNUSED_6 : 1 ;
bool UNUSED_7 : 1 ;
uint8_t PLACEHOLDER_2 ;
uint8_t PLACEHOLDER_3 ;
2023-06-23 19:13:39 -04:00
} ;
static_assert ( sizeof ( ui_config2_t ) = = sizeof ( uint32_t ) ) ;
2023-07-02 12:35:34 -04:00
/* Additional config.
* NB : Will be default init - override in defaults ( ) . */
2023-06-17 17:15:21 -04:00
struct misc_config_t {
2023-07-02 12:35:34 -04:00
bool mute_audio : 1 ;
bool disable_speaker : 1 ;
2023-09-04 11:46:07 -04:00
bool config_disable_external_tcxo : 1 ;
2023-11-19 09:08:29 -05:00
bool config_sdcard_high_speed_io : 1 ;
2024-01-17 00:59:35 -05:00
bool config_disable_config_mode : 1 ;
2023-07-02 12:35:34 -04:00
bool UNUSED_5 : 1 ;
bool UNUSED_6 : 1 ;
bool UNUSED_7 : 1 ;
uint8_t PLACEHOLDER_1 ;
uint8_t PLACEHOLDER_2 ;
uint8_t PLACEHOLDER_3 ;
2023-05-18 16:16:05 -04:00
} ;
2023-07-02 12:35:34 -04:00
static_assert ( sizeof ( misc_config_t ) = = sizeof ( uint32_t ) ) ;
2023-05-18 16:16:05 -04:00
2024-01-17 00:59:35 -05:00
# define MC_CONFIG_DISABLE_CONFIG_MODE 0x00000010 // config_disable_config_mode bit in struct above
2023-07-02 12:35:34 -04:00
/* IMPORTANT: Update dump_persistent_memory (below) when changing data_t. */
/* Struct must pack the same way on M4 and M0 cores.
* NB : When adding new members , keep 32 bit - aligned . */
2023-06-22 11:35:21 -04:00
2023-05-18 16:16:05 -04:00
struct data_t {
data_structure_version_enum structure_version ;
2023-06-11 14:47:13 -04:00
int64_t target_frequency ;
2023-05-18 16:16:05 -04:00
int32_t correction_ppb ;
uint32_t touch_calibration_magic ;
2023-07-02 12:35:34 -04:00
touch : : Calibration touch_calibration ; // 7 * 32 bits.
2023-05-18 16:16:05 -04:00
// Modem
uint32_t modem_def_index ;
serial_format_t serial_format ;
int32_t modem_bw ;
int32_t afsk_mark_freq ;
int32_t afsk_space_freq ;
int32_t modem_baudrate ;
int32_t modem_repeat ;
2023-07-02 12:35:34 -04:00
// Play dead unlock (Used?)
2023-05-18 16:16:05 -04:00
uint32_t playdead_magic ;
uint32_t playing_dead ;
uint32_t playdead_sequence ;
2023-06-23 19:13:39 -04:00
// UI Config
2023-05-18 16:16:05 -04:00
ui_config_t ui_config ;
uint32_t pocsag_last_address ;
uint32_t pocsag_ignore_address ;
int32_t tone_mix ;
// Hardware
uint32_t hardware_config ;
// Recon App
uint64_t recon_config ;
2023-12-28 05:25:53 -05:00
int8_t recon_repeat_nb ;
int8_t recon_repeat_gain ;
2023-12-30 16:32:41 -05:00
uint8_t recon_repeat_delay ;
2023-05-18 16:16:05 -04:00
// enable or disable converter
bool converter ;
// set up converter (false) or down converter (true) converter
bool updown_converter ;
2023-07-02 12:35:34 -04:00
bool updown_frequency_rx_correction ;
bool updown_frequency_tx_correction ;
bool UNUSED_4 : 1 ;
bool UNUSED_5 : 1 ;
bool UNUSED_6 : 1 ;
bool UNUSED_7 : 1 ;
2023-05-18 16:16:05 -04:00
// up/down converter offset
int64_t converter_frequency_offset ;
2023-05-20 03:30:08 -04:00
// frequency correction
2023-05-21 17:47:02 -04:00
uint32_t frequency_rx_correction ;
uint32_t frequency_tx_correction ;
2023-05-20 03:30:08 -04:00
Support for Rotary Encoder Dial sensitivity levels, issue #965 (#1057)
* Support for 3 levels of rotary encoder sensitivity #965
Backend support; UI will still need to call set function to configure.
* Support for 3 levels of rotary encoder sensitivity #965
Backend support only. UI will still need to be changed to call the set_sensitivity() function to configure.
* Removed trailing space
* Deleted blank lines to see if format checker will be happier
* Simpler support for multiple levels of encoder sensitivity, for issue #965
Removed the convoluted code :-) and instead just using a 2-dimensional array to choose which transition map to use. For now I only have 2 (vs 3) levels enabled as well, to save code space and because high-sensitivity is very touchy.
* Simpler version of configurable encoder sensitivity, issue #965
* Formatting
* Formatting test for Clang
* Formatting test
* Formatting (removed helpful comment)
* Formatting test (remove commented-out code)
* Formatting & swapping medium/low so default mode=0
* Swapped medium/low so default mode=0
* Adding UI & PMEM support to make encoder dial sensitivity configurable, issue #965
* Adding UI & PMEM support to make encoder dial sensitivity configurable, issue #965
* Adding UI & PMEM support to make encoder dial sensitivity configurable, issue #965
* Adding UI & PMEM support to make encoder dial sensitivity configurable, issue #965
* Adding UI & PMEM support to make encoder dial sensitivity configurable, issue #965
* Adding UI & PMEM support to make encoder dial sensitivity configurable, issue #965
* Removed unneeded range check (trusting in pmem checksum)
2023-05-24 22:32:12 -04:00
// Rotary encoder dial sensitivity (encoder.cpp/hpp)
2023-07-02 12:35:34 -04:00
uint16_t encoder_dial_sensitivity : 4 ;
uint16_t UNUSED_8 : 12 ;
Support for Rotary Encoder Dial sensitivity levels, issue #965 (#1057)
* Support for 3 levels of rotary encoder sensitivity #965
Backend support; UI will still need to call set function to configure.
* Support for 3 levels of rotary encoder sensitivity #965
Backend support only. UI will still need to be changed to call the set_sensitivity() function to configure.
* Removed trailing space
* Deleted blank lines to see if format checker will be happier
* Simpler support for multiple levels of encoder sensitivity, for issue #965
Removed the convoluted code :-) and instead just using a 2-dimensional array to choose which transition map to use. For now I only have 2 (vs 3) levels enabled as well, to save code space and because high-sensitivity is very touchy.
* Simpler version of configurable encoder sensitivity, issue #965
* Formatting
* Formatting test for Clang
* Formatting test
* Formatting (removed helpful comment)
* Formatting test (remove commented-out code)
* Formatting & swapping medium/low so default mode=0
* Swapped medium/low so default mode=0
* Adding UI & PMEM support to make encoder dial sensitivity configurable, issue #965
* Adding UI & PMEM support to make encoder dial sensitivity configurable, issue #965
* Adding UI & PMEM support to make encoder dial sensitivity configurable, issue #965
* Adding UI & PMEM support to make encoder dial sensitivity configurable, issue #965
* Adding UI & PMEM support to make encoder dial sensitivity configurable, issue #965
* Adding UI & PMEM support to make encoder dial sensitivity configurable, issue #965
* Removed unneeded range check (trusting in pmem checksum)
2023-05-24 22:32:12 -04:00
2023-07-02 12:35:34 -04:00
// Headphone volume in centibels.
int16_t headphone_volume_cb ;
2023-06-05 14:09:50 -04:00
2023-06-17 17:15:21 -04:00
// Misc flags
misc_config_t misc_config ;
2023-06-23 19:13:39 -04:00
// Additional UI settings.
ui_config2_t ui_config2 ;
2023-09-04 11:46:07 -04:00
// recovery mode magic value storage
uint32_t config_mode_storage ;
2023-05-18 16:16:05 -04:00
constexpr data_t ( )
: structure_version ( data_structure_version_enum : : VERSION_CURRENT ) ,
2023-06-11 14:47:13 -04:00
target_frequency ( target_frequency_reset_value ) ,
2023-05-18 16:16:05 -04:00
correction_ppb ( ppb_reset_value ) ,
touch_calibration_magic ( TOUCH_CALIBRATION_MAGIC ) ,
touch_calibration ( touch : : Calibration ( ) ) ,
modem_def_index ( 0 ) , // TODO: Unused?
serial_format ( ) ,
modem_bw ( 15000 ) , // TODO: Unused?
afsk_mark_freq ( afsk_mark_reset_value ) ,
afsk_space_freq ( afsk_space_reset_value ) ,
modem_baudrate ( modem_baudrate_reset_value ) ,
modem_repeat ( modem_repeat_reset_value ) ,
playdead_magic ( ) , // TODO: Unused?
playing_dead ( ) , // TODO: Unused?
playdead_sequence ( ) , // TODO: Unused?
ui_config ( ) ,
pocsag_last_address ( 0 ) , // TODO: A better default?
pocsag_ignore_address ( 0 ) , // TODO: A better default?
tone_mix ( tone_mix_reset_value ) ,
hardware_config ( 0 ) ,
2023-12-28 05:25:53 -05:00
2023-05-18 16:16:05 -04:00
recon_config ( 0 ) ,
2023-12-28 05:25:53 -05:00
recon_repeat_nb ( 0 ) ,
recon_repeat_gain ( 0 ) ,
2023-12-30 16:32:41 -05:00
recon_repeat_delay ( 0 ) ,
2023-07-02 12:35:34 -04:00
converter ( false ) ,
updown_converter ( false ) ,
updown_frequency_rx_correction ( false ) ,
updown_frequency_tx_correction ( false ) ,
UNUSED_4 ( false ) ,
UNUSED_5 ( false ) ,
UNUSED_6 ( false ) ,
UNUSED_7 ( false ) ,
2023-05-20 03:30:08 -04:00
converter_frequency_offset ( 0 ) ,
2023-07-02 12:35:34 -04:00
2023-05-20 03:30:08 -04:00
frequency_rx_correction ( 0 ) ,
frequency_tx_correction ( 0 ) ,
2023-07-02 12:35:34 -04:00
2023-07-17 16:16:40 -04:00
encoder_dial_sensitivity ( DIAL_SENSITIVITY_NORMAL ) ,
2023-07-02 12:35:34 -04:00
UNUSED_8 ( 0 ) ,
2023-06-17 17:15:21 -04:00
headphone_volume_cb ( - 600 ) ,
2023-06-23 19:13:39 -04:00
misc_config ( ) ,
2023-09-04 11:46:07 -04:00
ui_config2 ( ) ,
config_mode_storage ( CONFIG_MODE_NORMAL_VALUE ) {
2023-05-18 16:16:05 -04:00
}
} ;
struct backup_ram_t {
private :
2023-12-22 02:45:05 -05:00
volatile uint32_t regfile [ PMEM_SIZE_WORDS - 1 ] ;
2023-06-09 09:52:09 -04:00
volatile uint32_t check_value ;
2023-05-18 16:16:05 -04:00
static void copy ( const backup_ram_t & src , backup_ram_t & dst ) {
2023-12-22 02:45:05 -05:00
for ( size_t i = 0 ; i < PMEM_SIZE_WORDS - 1 ; i + + ) {
2023-05-18 16:16:05 -04:00
dst . regfile [ i ] = src . regfile [ i ] ;
}
dst . check_value = src . check_value ;
}
static void copy_from_data_t ( const data_t & src , backup_ram_t & dst ) {
const uint32_t * const src_words = ( uint32_t * ) & src ;
const size_t word_count = ( sizeof ( data_t ) + 3 ) / 4 ;
2023-12-22 02:45:05 -05:00
for ( size_t i = 0 ; i < PMEM_SIZE_WORDS - 1 ; i + + ) {
2023-05-18 16:16:05 -04:00
if ( i < word_count ) {
dst . regfile [ i ] = src_words [ i ] ;
} else {
dst . regfile [ i ] = 0 ;
}
}
}
uint32_t compute_check_value ( ) {
CRC < 32 > crc { 0x04c11db7 , 0xffffffff , 0xffffffff } ;
2023-12-22 02:45:05 -05:00
for ( size_t i = 0 ; i < PMEM_SIZE_WORDS - 1 ; i + + ) {
2023-05-18 16:16:05 -04:00
const auto word = regfile [ i ] ;
crc . process_byte ( ( word > > 0 ) & 0xff ) ;
crc . process_byte ( ( word > > 8 ) & 0xff ) ;
crc . process_byte ( ( word > > 16 ) & 0xff ) ;
crc . process_byte ( ( word > > 24 ) & 0xff ) ;
}
return crc . checksum ( ) ;
}
public :
/* default constructor */
backup_ram_t ( )
: check_value ( 0 ) {
const data_t defaults = data_t ( ) ;
copy_from_data_t ( defaults , * this ) ;
}
/* copy-assignment operator */
backup_ram_t & operator = ( const backup_ram_t & src ) {
copy ( src , * this ) ;
return * this ;
}
/* Calculate a check value from `this`, and check against
* the stored value .
*/
bool is_valid ( ) {
return compute_check_value ( ) = = check_value ;
}
/* Assuming `this` contains valid data, update the checksum
* and copy to the destination .
*/
void persist_to ( backup_ram_t & dst ) {
check_value = compute_check_value ( ) ;
copy ( * this , dst ) ;
}
2023-11-17 13:10:11 -05:00
/* Access functions for DebugPmemView */
uint32_t pmem_data_word ( uint32_t index ) {
return ( index > sizeof ( regfile ) / sizeof ( uint32_t ) ) ? 0xFFFFFFFF : regfile [ index ] ;
}
uint32_t pmem_stored_checksum ( void ) {
return check_value ;
}
uint32_t pmem_calculated_checksum ( void ) {
return compute_check_value ( ) ;
}
2023-05-18 16:16:05 -04:00
} ;
static_assert ( sizeof ( backup_ram_t ) = = memory : : map : : backup_ram . size ( ) ) ;
static_assert ( sizeof ( data_t ) < = sizeof ( backup_ram_t ) - sizeof ( uint32_t ) ) ;
2023-06-23 19:13:39 -04:00
/* Uncomment to get a compiler error with the data_t size. */
// template <size_t N>
// struct ShowSize;
// ShowSize<sizeof(data_t)> __data_t_size;
2023-05-18 16:16:05 -04:00
static backup_ram_t * const backup_ram = reinterpret_cast < backup_ram_t * > ( memory : : map : : backup_ram . base ( ) ) ;
static backup_ram_t cached_backup_ram ;
static data_t * data = reinterpret_cast < data_t * > ( & cached_backup_ram ) ;
namespace cache {
void defaults ( ) {
cached_backup_ram = backup_ram_t ( ) ;
2024-01-17 00:59:35 -05:00
// If the desired default is 0/false, then no need to set it here (buffer is initialized to 0)
2023-07-02 12:35:34 -04:00
set_config_backlight_timer ( backlight_config_t { } ) ;
set_config_splash ( true ) ;
2023-09-04 11:46:07 -04:00
set_config_disable_external_tcxo ( false ) ;
2023-07-16 18:05:27 -04:00
set_encoder_dial_sensitivity ( DIAL_SENSITIVITY_NORMAL ) ;
2023-08-20 16:28:23 -04:00
set_config_speaker_disable ( true ) ; // Disable AK4951 speaker by default (in case of OpenSourceSDRLab H2)
2023-07-02 12:35:34 -04:00
// Default values for recon app.
2023-05-18 16:16:05 -04:00
set_recon_autosave_freqs ( false ) ;
set_recon_autostart_recon ( true ) ;
set_recon_continuous ( true ) ;
set_recon_clear_output ( false ) ;
set_recon_load_freqs ( true ) ;
2023-12-28 05:25:53 -05:00
set_recon_load_repeaters ( true ) ;
2023-05-18 16:16:05 -04:00
set_recon_load_ranges ( true ) ;
set_recon_update_ranges_when_recon ( true ) ;
set_recon_load_hamradios ( true ) ;
set_recon_match_mode ( 0 ) ;
2023-12-28 05:25:53 -05:00
set_recon_repeat_recorded ( false ) ;
set_recon_repeat_amp ( false ) ;
set_recon_repeat_gain ( 35 ) ;
set_recon_repeat_nb ( 3 ) ;
2023-12-30 16:32:41 -05:00
set_recon_repeat_delay ( 1 ) ;
2023-11-19 09:08:29 -05:00
set_config_sdcard_high_speed_io ( false , true ) ;
2023-05-18 16:16:05 -04:00
}
void init ( ) {
2023-06-07 18:52:29 -04:00
const auto switches_state = get_switches_state ( ) ;
2023-09-04 11:46:07 -04:00
// ignore for valid check
2024-01-17 00:59:35 -05:00
auto config_mode_backup = config_mode_storage_direct ( ) ;
set_config_mode_storage_direct ( CONFIG_MODE_NORMAL_VALUE ) ;
2024-01-16 16:49:56 -05:00
2023-06-07 18:52:29 -04:00
if ( ! ( switches_state [ ( size_t ) ui : : KeyEvent : : Left ] & & switches_state [ ( size_t ) ui : : KeyEvent : : Right ] ) & & backup_ram - > is_valid ( ) ) {
2023-05-18 16:16:05 -04:00
// Copy valid persistent data into cache.
cached_backup_ram = * backup_ram ;
// Check that structure data we copied into cache is the expected
// version. If not, initialize cache to defaults.
if ( data - > structure_version ! = data_structure_version_enum : : VERSION_CURRENT ) {
// TODO: Can provide version-to-version upgrade functions here,
// if we want to be fancy.
defaults ( ) ;
}
} else {
// Copy defaults into cache.
defaults ( ) ;
}
2024-01-17 00:59:35 -05:00
set_config_mode_storage_direct ( config_mode_backup ) ;
2023-05-18 16:16:05 -04:00
}
void persist ( ) {
cached_backup_ram . persist_to ( * backup_ram ) ;
}
} /* namespace cache */
2023-11-17 13:10:11 -05:00
uint32_t pmem_data_word ( uint32_t index ) {
return backup_ram - > pmem_data_word ( index ) ;
}
uint32_t pmem_stored_checksum ( void ) {
return backup_ram - > pmem_stored_checksum ( ) ;
}
uint32_t pmem_calculated_checksum ( void ) {
return backup_ram - > pmem_calculated_checksum ( ) ;
}
2023-06-11 14:47:13 -04:00
rf : : Frequency target_frequency ( ) {
rf : : tuning_range . reset_if_outside ( data - > target_frequency , target_frequency_reset_value ) ;
return data - > target_frequency ;
2023-05-18 16:16:05 -04:00
}
2023-06-11 14:47:13 -04:00
void set_target_frequency ( const rf : : Frequency new_value ) {
data - > target_frequency = rf : : tuning_range . clip ( new_value ) ;
2023-05-18 16:16:05 -04:00
}
2023-06-05 14:09:50 -04:00
volume_t headphone_volume ( ) {
auto volume = volume_t : : centibel ( data - > headphone_volume_cb ) ;
volume = audio : : headphone : : volume_range ( ) . limit ( volume ) ;
return volume ;
}
void set_headphone_volume ( volume_t new_value ) {
new_value = audio : : headphone : : volume_range ( ) . limit ( new_value ) ;
data - > headphone_volume_cb = new_value . centibel ( ) ;
}
2023-05-18 16:16:05 -04:00
ppb_t correction_ppb ( ) {
ppb_range . reset_if_outside ( data - > correction_ppb , ppb_reset_value ) ;
return data - > correction_ppb ;
}
void set_correction_ppb ( const ppb_t new_value ) {
const auto clipped_value = ppb_range . clip ( new_value ) ;
data - > correction_ppb = clipped_value ;
portapack : : clock_manager . set_reference_ppb ( clipped_value ) ;
}
void set_touch_calibration ( const touch : : Calibration & new_value ) {
data - > touch_calibration = new_value ;
data - > touch_calibration_magic = TOUCH_CALIBRATION_MAGIC ;
}
const touch : : Calibration & touch_calibration ( ) {
if ( data - > touch_calibration_magic ! = TOUCH_CALIBRATION_MAGIC ) {
set_touch_calibration ( touch : : Calibration ( ) ) ;
}
return data - > touch_calibration ;
}
int32_t tone_mix ( ) {
tone_mix_range . reset_if_outside ( data - > tone_mix , tone_mix_reset_value ) ;
return data - > tone_mix ;
}
void set_tone_mix ( const int32_t new_value ) {
data - > tone_mix = tone_mix_range . clip ( new_value ) ;
}
int32_t afsk_mark_freq ( ) {
afsk_freq_range . reset_if_outside ( data - > afsk_mark_freq , afsk_mark_reset_value ) ;
return data - > afsk_mark_freq ;
}
void set_afsk_mark ( const int32_t new_value ) {
data - > afsk_mark_freq = afsk_freq_range . clip ( new_value ) ;
}
int32_t afsk_space_freq ( ) {
afsk_freq_range . reset_if_outside ( data - > afsk_space_freq , afsk_space_reset_value ) ;
return data - > afsk_space_freq ;
}
void set_afsk_space ( const int32_t new_value ) {
data - > afsk_space_freq = afsk_freq_range . clip ( new_value ) ;
}
int32_t modem_baudrate ( ) {
modem_baudrate_range . reset_if_outside ( data - > modem_baudrate , modem_baudrate_reset_value ) ;
return data - > modem_baudrate ;
}
void set_modem_baudrate ( const int32_t new_value ) {
data - > modem_baudrate = modem_baudrate_range . clip ( new_value ) ;
}
2023-07-02 12:35:34 -04:00
/*
int32_t modem_bw ( ) {
modem_bw_range . reset_if_outside ( data - > modem_bw , modem_bw_reset_value ) ;
return data - > modem_bw ;
}
2023-05-18 16:16:05 -04:00
2023-07-02 12:35:34 -04:00
void set_modem_bw ( const int32_t new_value ) {
data - > modem_bw = modem_bw_range . clip ( new_value ) ;
}
*/
2023-05-18 16:16:05 -04:00
uint8_t modem_repeat ( ) {
modem_repeat_range . reset_if_outside ( data - > modem_repeat , modem_repeat_reset_value ) ;
return data - > modem_repeat ;
}
void set_modem_repeat ( const uint32_t new_value ) {
data - > modem_repeat = modem_repeat_range . clip ( new_value ) ;
}
serial_format_t serial_format ( ) {
return data - > serial_format ;
}
void set_serial_format ( const serial_format_t new_value ) {
data - > serial_format = new_value ;
}
2023-07-02 12:35:34 -04:00
bool show_gui_return_icon ( ) { // add return icon in touchscreen menu
return data - > ui_config . show_gui_return_icon ! = 0 ;
2023-05-18 16:16:05 -04:00
}
bool show_bigger_qr_code ( ) { // show bigger QR code
2023-07-02 12:35:34 -04:00
return data - > ui_config . show_large_qr_code ! = 0 ;
2023-05-18 16:16:05 -04:00
}
bool disable_touchscreen ( ) { // Option to disable touch screen
2023-07-02 12:35:34 -04:00
return data - > ui_config . disable_touchscreen ;
2023-05-18 16:16:05 -04:00
}
2023-07-02 12:35:34 -04:00
bool hide_clock ( ) { // Hide clock from main menu
return data - > ui_config . hide_clock ;
2023-05-18 16:16:05 -04:00
}
2023-07-02 12:35:34 -04:00
bool clock_with_date ( ) { // Show clock with date, if not hidden
return data - > ui_config . clock_show_date ;
2023-05-18 16:16:05 -04:00
}
bool clkout_enabled ( ) {
2023-07-02 12:35:34 -04:00
return data - > ui_config . clkout_enabled ;
2023-05-18 16:16:05 -04:00
}
2023-06-17 17:15:21 -04:00
bool config_audio_mute ( ) {
2023-07-02 12:35:34 -04:00
return data - > misc_config . mute_audio ;
2023-06-17 17:15:21 -04:00
}
bool config_speaker_disable ( ) {
2023-07-02 12:35:34 -04:00
return data - > misc_config . disable_speaker ;
2023-05-18 16:16:05 -04:00
}
2023-09-04 11:46:07 -04:00
bool config_disable_external_tcxo ( ) {
return data - > misc_config . config_disable_external_tcxo ;
}
2024-01-17 00:59:35 -05:00
bool config_disable_config_mode ( ) {
return data - > misc_config . config_disable_config_mode ;
}
2023-11-19 09:08:29 -05:00
bool config_sdcard_high_speed_io ( ) {
return data - > misc_config . config_sdcard_high_speed_io ;
}
2023-05-18 16:16:05 -04:00
bool stealth_mode ( ) {
2023-07-02 12:35:34 -04:00
return data - > ui_config . stealth_mode ;
2023-05-18 16:16:05 -04:00
}
bool config_login ( ) {
2023-07-02 12:35:34 -04:00
return data - > ui_config . config_login ;
2023-05-18 16:16:05 -04:00
}
bool config_splash ( ) {
2023-07-02 12:35:34 -04:00
return data - > ui_config . config_splash ;
2023-05-18 16:16:05 -04:00
}
uint8_t config_cpld ( ) {
return data - > hardware_config ;
}
backlight_config_t config_backlight_timer ( ) {
2023-07-02 12:35:34 -04:00
return { static_cast < backlight_timeout_t > ( data - > ui_config . backlight_timeout ) ,
data - > ui_config . enable_backlight_timeout = = 1 } ;
2023-05-18 16:16:05 -04:00
}
void set_gui_return_icon ( bool v ) {
2023-07-02 12:35:34 -04:00
data - > ui_config . show_gui_return_icon = v ? 1 : 0 ;
2023-05-18 16:16:05 -04:00
}
void set_load_app_settings ( bool v ) {
2023-07-02 12:35:34 -04:00
data - > ui_config . load_app_settings = v ? 1 : 0 ;
2023-05-18 16:16:05 -04:00
}
void set_save_app_settings ( bool v ) {
2023-07-02 12:35:34 -04:00
data - > ui_config . save_app_settings = v ? 1 : 0 ;
2023-05-18 16:16:05 -04:00
}
void set_show_bigger_qr_code ( bool v ) {
2023-07-02 12:35:34 -04:00
data - > ui_config . show_large_qr_code = v ? 1 : 0 ;
2023-05-18 16:16:05 -04:00
}
void set_disable_touchscreen ( bool v ) {
2023-07-02 12:35:34 -04:00
data - > ui_config . disable_touchscreen = v ;
2023-05-18 16:16:05 -04:00
}
void set_clock_hidden ( bool v ) {
2023-07-02 12:35:34 -04:00
data - > ui_config . hide_clock = v ;
2023-05-18 16:16:05 -04:00
}
void set_clock_with_date ( bool v ) {
2023-07-02 12:35:34 -04:00
data - > ui_config . clock_show_date = v ;
2023-05-18 16:16:05 -04:00
}
void set_clkout_enabled ( bool v ) {
2023-07-02 12:35:34 -04:00
data - > ui_config . clkout_enabled = v ;
2023-05-18 16:16:05 -04:00
}
2023-06-17 17:15:21 -04:00
void set_config_audio_mute ( bool v ) {
2023-07-02 12:35:34 -04:00
data - > misc_config . mute_audio = v ;
2023-06-17 17:15:21 -04:00
}
void set_config_speaker_disable ( bool v ) {
2023-07-02 12:35:34 -04:00
data - > misc_config . disable_speaker = v ;
2023-05-18 16:16:05 -04:00
}
2023-09-04 11:46:07 -04:00
void set_config_disable_external_tcxo ( bool v ) {
data - > misc_config . config_disable_external_tcxo = v ;
}
2024-01-17 00:59:35 -05:00
void set_config_disable_config_mode ( bool v ) {
data - > misc_config . config_disable_config_mode = v ;
}
2023-11-19 09:08:29 -05:00
void set_config_sdcard_high_speed_io ( bool v , bool save ) {
if ( v ) {
/* 200MHz / (2 * 2) = 50MHz */
/* TODO: Adjust SCU pin configurations: pull-up/down, slew, glitch filter? */
sdio_cclk_set ( 2 ) ;
} else {
/* 200MHz / (2 * 4) = 25MHz */
sdio_cclk_set ( 4 ) ;
}
if ( save )
data - > misc_config . config_sdcard_high_speed_io = v ;
}
2023-05-18 16:16:05 -04:00
void set_stealth_mode ( bool v ) {
2023-07-02 12:35:34 -04:00
data - > ui_config . stealth_mode = v ;
2023-05-18 16:16:05 -04:00
}
void set_config_login ( bool v ) {
2023-07-02 12:35:34 -04:00
data - > ui_config . config_login = v ;
2023-05-18 16:16:05 -04:00
}
void set_config_splash ( bool v ) {
2023-07-02 12:35:34 -04:00
data - > ui_config . config_splash = v ;
2023-05-18 16:16:05 -04:00
}
void set_config_cpld ( uint8_t i ) {
data - > hardware_config = i ;
}
void set_config_backlight_timer ( const backlight_config_t & new_value ) {
2023-07-02 12:35:34 -04:00
data - > ui_config . backlight_timeout = static_cast < uint8_t > ( new_value . timeout_enum ( ) ) ;
data - > ui_config . enable_backlight_timeout = static_cast < uint8_t > ( new_value . timeout_enabled ( ) ) ;
2023-05-18 16:16:05 -04:00
}
uint32_t pocsag_last_address ( ) {
return data - > pocsag_last_address ;
}
void set_pocsag_last_address ( uint32_t address ) {
data - > pocsag_last_address = address ;
}
uint32_t pocsag_ignore_address ( ) {
return data - > pocsag_ignore_address ;
}
void set_pocsag_ignore_address ( uint32_t address ) {
data - > pocsag_ignore_address = address ;
}
2023-07-02 12:35:34 -04:00
uint16_t clkout_freq ( ) {
auto freq = data - > ui_config . clkout_freq ;
if ( freq < clkout_freq_range . minimum | | freq > clkout_freq_range . maximum )
set_clkout_freq ( clkout_freq_reset_value ) ;
return data - > ui_config . clkout_freq ;
2023-05-18 16:16:05 -04:00
}
2023-07-02 12:35:34 -04:00
void set_clkout_freq ( uint16_t freq ) {
data - > ui_config . clkout_freq = freq ;
2023-05-18 16:16:05 -04:00
}
2023-06-23 19:13:39 -04:00
/* Recon app */
2023-05-18 16:16:05 -04:00
bool recon_autosave_freqs ( ) {
return ( data - > recon_config & 0x80000000UL ) ? true : false ;
}
bool recon_autostart_recon ( ) {
return ( data - > recon_config & 0x40000000UL ) ? true : false ;
}
bool recon_continuous ( ) {
return ( data - > recon_config & 0x20000000UL ) ? true : false ;
}
bool recon_clear_output ( ) {
return ( data - > recon_config & 0x10000000UL ) ? true : false ;
}
bool recon_load_freqs ( ) {
return ( data - > recon_config & 0x08000000UL ) ? true : false ;
}
bool recon_load_ranges ( ) {
return ( data - > recon_config & 0x04000000UL ) ? true : false ;
}
bool recon_update_ranges_when_recon ( ) {
return ( data - > recon_config & 0x02000000UL ) ? true : false ;
}
bool recon_load_hamradios ( ) {
return ( data - > recon_config & 0x01000000UL ) ? true : false ;
}
bool recon_match_mode ( ) {
return ( data - > recon_config & 0x00800000UL ) ? true : false ;
}
2023-06-25 02:16:49 -04:00
bool recon_auto_record_locked ( ) {
return ( data - > recon_config & 0x00400000UL ) ? true : false ;
}
2023-12-28 05:25:53 -05:00
bool recon_repeat_recorded ( ) {
return ( data - > recon_config & 0x00200000UL ) ? true : false ;
}
int8_t recon_repeat_nb ( ) {
return data - > recon_repeat_nb ;
}
int8_t recon_repeat_gain ( ) {
return data - > recon_repeat_gain ;
}
2023-12-30 16:32:41 -05:00
uint8_t recon_repeat_delay ( ) {
return data - > recon_repeat_delay ;
}
2023-12-28 05:25:53 -05:00
bool recon_repeat_amp ( ) {
return ( data - > recon_config & 0x00100000UL ) ? true : false ;
}
bool recon_load_repeaters ( ) {
return ( data - > recon_config & 0x00080000UL ) ? true : false ;
}
2023-05-18 16:16:05 -04:00
void set_recon_autosave_freqs ( const bool v ) {
data - > recon_config = ( data - > recon_config & ~ 0x80000000UL ) | ( v < < 31 ) ;
}
void set_recon_autostart_recon ( const bool v ) {
data - > recon_config = ( data - > recon_config & ~ 0x40000000UL ) | ( v < < 30 ) ;
}
void set_recon_continuous ( const bool v ) {
data - > recon_config = ( data - > recon_config & ~ 0x20000000UL ) | ( v < < 29 ) ;
}
void set_recon_clear_output ( const bool v ) {
data - > recon_config = ( data - > recon_config & ~ 0x10000000UL ) | ( v < < 28 ) ;
}
void set_recon_load_freqs ( const bool v ) {
data - > recon_config = ( data - > recon_config & ~ 0x08000000UL ) | ( v < < 27 ) ;
}
void set_recon_load_ranges ( const bool v ) {
data - > recon_config = ( data - > recon_config & ~ 0x04000000UL ) | ( v < < 26 ) ;
}
void set_recon_update_ranges_when_recon ( const bool v ) {
data - > recon_config = ( data - > recon_config & ~ 0x02000000UL ) | ( v < < 25 ) ;
}
void set_recon_load_hamradios ( const bool v ) {
data - > recon_config = ( data - > recon_config & ~ 0x01000000UL ) | ( v < < 24 ) ;
}
void set_recon_match_mode ( const bool v ) {
data - > recon_config = ( data - > recon_config & ~ 0x00800000UL ) | ( v < < 23 ) ;
}
2023-06-25 02:16:49 -04:00
void set_recon_auto_record_locked ( const bool v ) {
data - > recon_config = ( data - > recon_config & ~ 0x00400000UL ) | ( v < < 22 ) ;
}
2023-12-28 05:25:53 -05:00
void set_recon_repeat_recorded ( const bool v ) {
data - > recon_config = ( data - > recon_config & ~ 0x00200000UL ) | ( v < < 21 ) ;
}
void set_recon_repeat_nb ( const int8_t v ) {
data - > recon_repeat_nb = v ;
}
void set_recon_repeat_gain ( const int8_t v ) {
data - > recon_repeat_gain = v ;
}
2023-12-30 16:32:41 -05:00
void set_recon_repeat_delay ( const uint8_t v ) {
data - > recon_repeat_delay = v ;
}
2023-12-28 05:25:53 -05:00
void set_recon_repeat_amp ( const bool v ) {
data - > recon_config = ( data - > recon_config & ~ 0x00100000UL ) | ( v < < 20 ) ;
}
void set_recon_load_repeaters ( const bool v ) {
data - > recon_config = ( data - > recon_config & ~ 0x00080000UL ) | ( v < < 19 ) ;
}
2023-06-23 19:13:39 -04:00
/* UI Config 2 */
bool ui_hide_speaker ( ) {
return data - > ui_config2 . hide_speaker ;
}
2023-06-26 02:08:09 -04:00
bool ui_hide_mute ( ) {
return data - > ui_config2 . hide_mute ;
}
2023-06-23 19:13:39 -04:00
bool ui_hide_converter ( ) {
return data - > ui_config2 . hide_converter ;
}
bool ui_hide_stealth ( ) {
return data - > ui_config2 . hide_stealth ;
}
bool ui_hide_camera ( ) {
return data - > ui_config2 . hide_camera ;
}
bool ui_hide_sleep ( ) {
return data - > ui_config2 . hide_sleep ;
}
bool ui_hide_bias_tee ( ) {
return data - > ui_config2 . hide_bias_tee ;
2023-05-18 16:16:05 -04:00
}
2023-06-23 19:13:39 -04:00
bool ui_hide_clock ( ) {
return data - > ui_config2 . hide_clock ;
}
bool ui_hide_sd_card ( ) {
return data - > ui_config2 . hide_sd_card ;
}
void set_ui_hide_speaker ( bool v ) {
data - > ui_config2 . hide_speaker = v ;
}
2023-06-26 02:08:09 -04:00
void set_ui_hide_mute ( bool v ) {
data - > ui_config2 . hide_mute = v ;
}
2023-06-23 19:13:39 -04:00
void set_ui_hide_converter ( bool v ) {
data - > ui_config2 . hide_converter = v ;
if ( v )
data - > converter = false ;
}
void set_ui_hide_stealth ( bool v ) {
data - > ui_config2 . hide_stealth = v ;
}
void set_ui_hide_camera ( bool v ) {
data - > ui_config2 . hide_camera = v ;
}
void set_ui_hide_sleep ( bool v ) {
data - > ui_config2 . hide_sleep = v ;
}
void set_ui_hide_bias_tee ( bool v ) {
data - > ui_config2 . hide_bias_tee = v ;
}
void set_ui_hide_clock ( bool v ) {
data - > ui_config2 . hide_clock = v ;
}
void set_ui_hide_sd_card ( bool v ) {
data - > ui_config2 . hide_sd_card = v ;
}
/* Converter */
2023-05-18 16:16:05 -04:00
bool config_converter ( ) {
return data - > converter ;
}
bool config_updown_converter ( ) {
return data - > updown_converter ;
}
int64_t config_converter_freq ( ) {
return data - > converter_frequency_offset ;
}
2023-05-20 03:30:08 -04:00
void set_config_converter ( bool v ) {
2023-05-18 16:16:05 -04:00
data - > converter = v ;
}
2023-05-20 03:30:08 -04:00
void set_config_updown_converter ( bool v ) {
2023-05-18 16:16:05 -04:00
data - > updown_converter = v ;
}
2023-05-20 03:30:08 -04:00
void set_config_converter_freq ( int64_t v ) {
2023-05-18 16:16:05 -04:00
data - > converter_frequency_offset = v ;
}
2023-06-25 02:16:49 -04:00
// Frequency correction settings
2023-05-20 03:30:08 -04:00
bool config_freq_tx_correction_updown ( ) {
return data - > updown_frequency_tx_correction ;
}
bool config_freq_rx_correction_updown ( ) {
return data - > updown_frequency_rx_correction ;
}
2023-05-21 17:47:02 -04:00
uint32_t config_freq_tx_correction ( ) {
2023-05-20 03:30:08 -04:00
return data - > frequency_tx_correction ;
}
2023-05-21 17:47:02 -04:00
uint32_t config_freq_rx_correction ( ) {
2023-05-20 03:30:08 -04:00
return data - > frequency_rx_correction ;
}
2023-06-25 02:16:49 -04:00
void set_freq_tx_correction_updown ( bool v ) {
data - > updown_frequency_tx_correction = v ;
}
void set_freq_rx_correction_updown ( bool v ) {
data - > updown_frequency_rx_correction = v ;
}
2023-05-21 17:47:02 -04:00
void set_config_freq_tx_correction ( uint32_t v ) {
2023-05-20 03:30:08 -04:00
data - > frequency_tx_correction = v ;
}
2023-05-21 17:47:02 -04:00
void set_config_freq_rx_correction ( uint32_t v ) {
2023-05-20 03:30:08 -04:00
data - > frequency_rx_correction = v ;
}
2023-06-25 02:16:49 -04:00
// Rotary encoder dial settings
Support for Rotary Encoder Dial sensitivity levels, issue #965 (#1057)
* Support for 3 levels of rotary encoder sensitivity #965
Backend support; UI will still need to call set function to configure.
* Support for 3 levels of rotary encoder sensitivity #965
Backend support only. UI will still need to be changed to call the set_sensitivity() function to configure.
* Removed trailing space
* Deleted blank lines to see if format checker will be happier
* Simpler support for multiple levels of encoder sensitivity, for issue #965
Removed the convoluted code :-) and instead just using a 2-dimensional array to choose which transition map to use. For now I only have 2 (vs 3) levels enabled as well, to save code space and because high-sensitivity is very touchy.
* Simpler version of configurable encoder sensitivity, issue #965
* Formatting
* Formatting test for Clang
* Formatting test
* Formatting (removed helpful comment)
* Formatting test (remove commented-out code)
* Formatting & swapping medium/low so default mode=0
* Swapped medium/low so default mode=0
* Adding UI & PMEM support to make encoder dial sensitivity configurable, issue #965
* Adding UI & PMEM support to make encoder dial sensitivity configurable, issue #965
* Adding UI & PMEM support to make encoder dial sensitivity configurable, issue #965
* Adding UI & PMEM support to make encoder dial sensitivity configurable, issue #965
* Adding UI & PMEM support to make encoder dial sensitivity configurable, issue #965
* Adding UI & PMEM support to make encoder dial sensitivity configurable, issue #965
* Removed unneeded range check (trusting in pmem checksum)
2023-05-24 22:32:12 -04:00
uint8_t config_encoder_dial_sensitivity ( ) {
return data - > encoder_dial_sensitivity ;
}
void set_encoder_dial_sensitivity ( uint8_t v ) {
data - > encoder_dial_sensitivity = v ;
}
2023-09-04 11:46:07 -04:00
// Recovery mode magic value storage
static data_t * data_direct_access = reinterpret_cast < data_t * > ( memory : : map : : backup_ram . base ( ) ) ;
2024-01-17 00:59:35 -05:00
uint32_t config_mode_storage_direct ( ) {
2023-09-04 11:46:07 -04:00
return data_direct_access - > config_mode_storage ;
}
2024-01-17 00:59:35 -05:00
void set_config_mode_storage_direct ( uint32_t v ) {
2023-09-04 11:46:07 -04:00
data_direct_access - > config_mode_storage = v ;
}
2024-01-17 00:59:35 -05:00
bool config_disable_config_mode_direct ( ) {
// "return data_direct_access->misc_config.config_disable_config_mode"
// Casting as U32 as workaround for misaligned memory access
uint32_t misc_config_u32 = * ( uint32_t * ) & data_direct_access - > misc_config ;
return ( ( misc_config_u32 & MC_CONFIG_DISABLE_CONFIG_MODE ) ! = 0 ) ;
}
2023-09-04 11:46:07 -04:00
2023-06-25 02:16:49 -04:00
// PMem to sdcard settings
2023-06-04 15:25:25 -04:00
bool should_use_sdcard_for_pmem ( ) {
return std : : filesystem : : file_exists ( PMEM_FILEFLAG ) ;
}
int save_persistent_settings_to_file ( ) {
2023-05-18 16:16:05 -04:00
File outfile ;
2023-10-19 14:09:49 -04:00
2024-01-13 01:57:32 -05:00
ensure_directory ( SETTINGS_DIR ) ;
2023-07-02 12:35:34 -04:00
auto error = outfile . create ( PMEM_SETTING_FILE ) ;
if ( error )
2023-05-18 16:16:05 -04:00
return false ;
2023-07-02 12:35:34 -04:00
2023-05-18 16:16:05 -04:00
outfile . write ( reinterpret_cast < char * > ( & cached_backup_ram ) , sizeof ( backup_ram_t ) ) ;
return true ;
}
2023-06-04 15:25:25 -04:00
int load_persistent_settings_from_file ( ) {
2023-05-18 16:16:05 -04:00
File infile ;
2023-07-02 12:35:34 -04:00
auto error = infile . open ( PMEM_SETTING_FILE ) ;
if ( error )
return false ;
infile . read ( reinterpret_cast < char * > ( & cached_backup_ram ) , sizeof ( backup_ram_t ) ) ;
return true ;
2023-05-18 16:16:05 -04:00
}
2023-06-25 02:16:49 -04:00
// Pmem size helper
2023-06-07 16:32:44 -04:00
size_t data_size ( ) {
return sizeof ( data_t ) ;
}
2023-06-25 02:16:49 -04:00
// Dump pmem, receiver and transmitter models internals in human readable format
2023-06-22 11:35:21 -04:00
bool debug_dump ( ) {
ui : : Painter painter { } ;
std : : string debug_dir = " DEBUG " ;
std : : filesystem : : path filename { } ;
File pmem_dump_file { } ;
// create new dump file name and DEBUG directory
2024-01-13 01:57:32 -05:00
ensure_directory ( debug_dir ) ;
2023-06-22 11:35:21 -04:00
filename = next_filename_matching_pattern ( debug_dir + " /DEBUG_DUMP_????.TXT " ) ;
if ( filename . empty ( ) ) {
2023-06-25 02:16:49 -04:00
painter . draw_string ( { 0 , 320 - 16 } , ui : : Styles : : red , " COULD NOT GET DUMP NAME ! " ) ;
2023-06-22 11:35:21 -04:00
return false ;
}
// dump data fo filename
auto error = pmem_dump_file . create ( filename ) ;
if ( error ) {
painter . draw_string ( { 0 , 320 - 16 } , ui : : Styles : : red , " ERROR DUMPING " + filename . filename ( ) . string ( ) + " ! " ) ;
return false ;
}
2023-10-19 14:09:49 -04:00
pmem_dump_file . write_line ( " FW version: " VERSION_STRING ) ;
pmem_dump_file . write_line ( " Ext APPS version req'd: 0x " + to_string_hex ( VERSION_MD5 ) ) ;
pmem_dump_file . write_line ( " GCC version: " + to_string_dec_int ( __GNUC__ ) + " . " + to_string_dec_int ( __GNUC_MINOR__ ) + " . " + to_string_dec_int ( __GNUC_PATCHLEVEL__ ) ) ;
2023-06-28 13:01:09 -04:00
2023-06-22 11:35:21 -04:00
// write persistent memory
2023-06-28 13:01:09 -04:00
pmem_dump_file . write_line ( " \n [Persistent Memory] " ) ;
2023-06-23 19:13:39 -04:00
2023-06-22 11:35:21 -04:00
// full variables
2023-06-28 13:01:09 -04:00
pmem_dump_file . write_line ( " structure_version: 0x " + to_string_hex ( data - > structure_version , 8 ) ) ;
2023-06-22 11:35:21 -04:00
pmem_dump_file . write_line ( " target_frequency: " + to_string_dec_int ( data - > target_frequency ) ) ;
pmem_dump_file . write_line ( " correction_ppb: " + to_string_dec_int ( data - > correction_ppb ) ) ;
pmem_dump_file . write_line ( " modem_def_index: " + to_string_dec_uint ( data - > modem_def_index ) ) ;
pmem_dump_file . write_line ( " serial_format.data_bit: " + to_string_dec_uint ( data - > serial_format . data_bits ) ) ;
pmem_dump_file . write_line ( " serial_format.parity: " + to_string_dec_uint ( data - > serial_format . parity ) ) ;
pmem_dump_file . write_line ( " serial_format.stop_bits: " + to_string_dec_uint ( data - > serial_format . stop_bits ) ) ;
pmem_dump_file . write_line ( " serial_format.bit_order: " + to_string_dec_uint ( data - > serial_format . bit_order ) ) ;
pmem_dump_file . write_line ( " modem_bw: " + to_string_dec_int ( data - > modem_bw ) ) ;
pmem_dump_file . write_line ( " afsk_mark_freq: " + to_string_dec_int ( data - > afsk_mark_freq ) ) ;
pmem_dump_file . write_line ( " afsk_space_freq: " + to_string_dec_int ( data - > afsk_space_freq ) ) ;
pmem_dump_file . write_line ( " modem_baudrate: " + to_string_dec_int ( data - > modem_baudrate ) ) ;
pmem_dump_file . write_line ( " modem_repeat: " + to_string_dec_int ( data - > modem_repeat ) ) ;
pmem_dump_file . write_line ( " playdead_magic: " + to_string_dec_uint ( data - > playdead_magic ) ) ;
pmem_dump_file . write_line ( " playing_dead: " + to_string_dec_uint ( data - > playing_dead ) ) ;
pmem_dump_file . write_line ( " playdead_sequence: " + to_string_dec_uint ( data - > playdead_sequence ) ) ;
pmem_dump_file . write_line ( " pocsag_last_address: " + to_string_dec_uint ( data - > pocsag_last_address ) ) ;
pmem_dump_file . write_line ( " pocsag_ignore_address: " + to_string_dec_uint ( data - > pocsag_ignore_address ) ) ;
2023-06-23 19:13:39 -04:00
pmem_dump_file . write_line ( " tone_mix: " + to_string_dec_uint ( data - > tone_mix ) ) ;
2023-06-22 11:35:21 -04:00
pmem_dump_file . write_line ( " hardware_config: " + to_string_dec_uint ( data - > hardware_config ) ) ;
2023-06-28 13:01:09 -04:00
pmem_dump_file . write_line ( " recon_config: 0x " + to_string_hex ( data - > recon_config , 16 ) ) ;
2024-01-16 16:49:56 -05:00
pmem_dump_file . write_line ( " recon_repeat_nb: " + to_string_dec_int ( data - > recon_repeat_nb ) ) ;
pmem_dump_file . write_line ( " recon_repeat_gain: " + to_string_dec_int ( data - > recon_repeat_gain ) ) ;
pmem_dump_file . write_line ( " recon_repeat_delay: " + to_string_dec_int ( data - > recon_repeat_delay ) ) ;
2023-06-23 19:13:39 -04:00
pmem_dump_file . write_line ( " converter: " + to_string_dec_int ( data - > converter ) ) ;
pmem_dump_file . write_line ( " updown_converter: " + to_string_dec_int ( data - > updown_converter ) ) ;
2023-07-02 12:35:34 -04:00
pmem_dump_file . write_line ( " updown_frequency_rx_correction: " + to_string_dec_int ( data - > updown_frequency_rx_correction ) ) ;
pmem_dump_file . write_line ( " updown_frequency_tx_correction: " + to_string_dec_int ( data - > updown_frequency_tx_correction ) ) ;
// pmem_dump_file.write_line("UNUSED_4: " + to_string_dec_int(data->UNUSED_4));
// pmem_dump_file.write_line("UNUSED_5: " + to_string_dec_int(data->UNUSED_5));
// pmem_dump_file.write_line("UNUSED_6: " + to_string_dec_int(data->UNUSED_6));
// pmem_dump_file.write_line("UNUSED_7: " + to_string_dec_int(data->UNUSED_7));
2023-06-23 19:13:39 -04:00
pmem_dump_file . write_line ( " converter_frequency_offset: " + to_string_dec_int ( data - > converter_frequency_offset ) ) ;
2023-06-22 11:35:21 -04:00
pmem_dump_file . write_line ( " frequency_rx_correction: " + to_string_dec_uint ( data - > frequency_rx_correction ) ) ;
pmem_dump_file . write_line ( " frequency_tx_correction: " + to_string_dec_uint ( data - > frequency_tx_correction ) ) ;
pmem_dump_file . write_line ( " encoder_dial_sensitivity: " + to_string_dec_uint ( data - > encoder_dial_sensitivity ) ) ;
2023-07-02 12:35:34 -04:00
// pmem_dump_file.write_line("UNUSED_8: " + to_string_dec_uint(data->UNUSED_8));
2023-06-22 11:35:21 -04:00
pmem_dump_file . write_line ( " headphone_volume_cb: " + to_string_dec_int ( data - > headphone_volume_cb ) ) ;
2024-01-16 16:49:56 -05:00
pmem_dump_file . write_line ( " config_mode_storage: 0x " + to_string_hex ( data - > config_mode_storage , 8 ) ) ;
2023-06-23 19:13:39 -04:00
2023-06-22 11:35:21 -04:00
// ui_config bits
const auto backlight_timer = portapack : : persistent_memory : : config_backlight_timer ( ) ;
2023-07-02 12:35:34 -04:00
pmem_dump_file . write_line ( " ui_config clkout_freq: " + to_string_dec_uint ( clkout_freq ( ) ) ) ;
2023-06-22 11:35:21 -04:00
pmem_dump_file . write_line ( " ui_config backlight_timer.timeout_enabled: " + to_string_dec_uint ( backlight_timer . timeout_enabled ( ) ) ) ;
pmem_dump_file . write_line ( " ui_config backlight_timer.timeout_seconds: " + to_string_dec_uint ( backlight_timer . timeout_seconds ( ) ) ) ;
2023-07-02 12:35:34 -04:00
pmem_dump_file . write_line ( " ui_config show_gui_return_icon: " + to_string_dec_uint ( data - > ui_config . show_gui_return_icon ) ) ;
pmem_dump_file . write_line ( " ui_config load_app_settings: " + to_string_dec_uint ( data - > ui_config . load_app_settings ) ) ;
pmem_dump_file . write_line ( " ui_config save_app_settings: " + to_string_dec_uint ( data - > ui_config . save_app_settings ) ) ;
pmem_dump_file . write_line ( " ui_config show_bigger_qr_code: " + to_string_dec_uint ( data - > ui_config . show_large_qr_code ) ) ;
pmem_dump_file . write_line ( " ui_config disable_touchscreen: " + to_string_dec_uint ( data - > ui_config . disable_touchscreen ) ) ;
pmem_dump_file . write_line ( " ui_config hide_clock: " + to_string_dec_uint ( data - > ui_config . hide_clock ) ) ;
pmem_dump_file . write_line ( " ui_config clock_with_date: " + to_string_dec_uint ( data - > ui_config . clock_show_date ) ) ;
pmem_dump_file . write_line ( " ui_config clkout_enabled: " + to_string_dec_uint ( data - > ui_config . clkout_enabled ) ) ;
pmem_dump_file . write_line ( " ui_config stealth_mode: " + to_string_dec_uint ( data - > ui_config . stealth_mode ) ) ;
pmem_dump_file . write_line ( " ui_config config_login: " + to_string_dec_uint ( data - > ui_config . config_login ) ) ;
pmem_dump_file . write_line ( " ui_config config_splash: " + to_string_dec_uint ( data - > ui_config . config_splash ) ) ;
2023-06-23 19:13:39 -04:00
// ui_config2 bits
pmem_dump_file . write_line ( " ui_config2 hide_speaker: " + to_string_dec_uint ( data - > ui_config2 . hide_speaker ) ) ;
pmem_dump_file . write_line ( " ui_config2 hide_converter: " + to_string_dec_uint ( data - > ui_config2 . hide_converter ) ) ;
pmem_dump_file . write_line ( " ui_config2 hide_stealth: " + to_string_dec_uint ( data - > ui_config2 . hide_stealth ) ) ;
pmem_dump_file . write_line ( " ui_config2 hide_camera: " + to_string_dec_uint ( data - > ui_config2 . hide_camera ) ) ;
pmem_dump_file . write_line ( " ui_config2 hide_sleep: " + to_string_dec_uint ( data - > ui_config2 . hide_sleep ) ) ;
pmem_dump_file . write_line ( " ui_config2 hide_bias_tee: " + to_string_dec_uint ( data - > ui_config2 . hide_bias_tee ) ) ;
pmem_dump_file . write_line ( " ui_config2 hide_clock: " + to_string_dec_uint ( data - > ui_config2 . hide_clock ) ) ;
pmem_dump_file . write_line ( " ui_config2 hide_sd_card: " + to_string_dec_uint ( data - > ui_config2 . hide_sd_card ) ) ;
2023-06-26 02:08:09 -04:00
pmem_dump_file . write_line ( " ui_config2 hide_mute: " + to_string_dec_uint ( data - > ui_config2 . hide_mute ) ) ;
2023-06-23 19:13:39 -04:00
2023-06-22 11:35:21 -04:00
// misc_config bits
pmem_dump_file . write_line ( " misc_config config_audio_mute: " + to_string_dec_int ( config_audio_mute ( ) ) ) ;
pmem_dump_file . write_line ( " misc_config config_speaker_disable: " + to_string_dec_int ( config_speaker_disable ( ) ) ) ;
2024-01-17 00:59:35 -05:00
pmem_dump_file . write_line ( " misc_config config_disable_external_tcxo: " + to_string_dec_uint ( config_disable_external_tcxo ( ) ) ) ;
pmem_dump_file . write_line ( " misc_config config_sdcard_high_speed_io: " + to_string_dec_uint ( config_sdcard_high_speed_io ( ) ) ) ;
pmem_dump_file . write_line ( " misc_config config_disable_config_mode: " + to_string_dec_uint ( config_disable_config_mode ( ) ) ) ;
2023-09-04 11:46:07 -04:00
2023-06-22 11:35:21 -04:00
// receiver_model
2023-06-28 13:01:09 -04:00
pmem_dump_file . write_line ( " \n [Receiver Model] " ) ;
2023-06-22 11:35:21 -04:00
pmem_dump_file . write_line ( " target_frequency: " + to_string_dec_uint ( receiver_model . target_frequency ( ) ) ) ;
pmem_dump_file . write_line ( " frequency_step: " + to_string_dec_uint ( receiver_model . frequency_step ( ) ) ) ;
pmem_dump_file . write_line ( " lna: " + to_string_dec_int ( receiver_model . lna ( ) ) ) ;
pmem_dump_file . write_line ( " vga: " + to_string_dec_int ( receiver_model . vga ( ) ) ) ;
pmem_dump_file . write_line ( " rf_amp: " + to_string_dec_int ( receiver_model . rf_amp ( ) ) ) ;
pmem_dump_file . write_line ( " baseband_bandwidth: " + to_string_dec_uint ( receiver_model . baseband_bandwidth ( ) ) ) ;
pmem_dump_file . write_line ( " sampling_rate: " + to_string_dec_uint ( receiver_model . sampling_rate ( ) ) ) ;
switch ( receiver_model . modulation ( ) ) {
case ReceiverModel : : Mode : : AMAudio :
pmem_dump_file . write_line ( " modulation: Mode::AMAudio " ) ;
break ;
case ReceiverModel : : Mode : : NarrowbandFMAudio :
pmem_dump_file . write_line ( " modulation: Mode::NarrowbandFMAudio " ) ;
break ;
case ReceiverModel : : Mode : : WidebandFMAudio :
pmem_dump_file . write_line ( " modulation: Mode::WidebandFMAudio " ) ;
break ;
case ReceiverModel : : Mode : : SpectrumAnalysis :
pmem_dump_file . write_line ( " modulation: Mode::SpectrumAnalysis " ) ;
break ;
case ReceiverModel : : Mode : : Capture :
pmem_dump_file . write_line ( " modulation: Mode::Capture " ) ;
break ;
default :
pmem_dump_file . write_line ( " modulation: !!unknown mode!! " ) ;
break ;
}
2023-06-28 13:01:09 -04:00
pmem_dump_file . write_line ( " headphone_volume.centibel: " + to_string_dec_int ( receiver_model . headphone_volume ( ) . centibel ( ) ) ) ;
2023-06-22 11:35:21 -04:00
pmem_dump_file . write_line ( " normalized_headphone_volume: " + to_string_dec_uint ( receiver_model . normalized_headphone_volume ( ) ) ) ;
pmem_dump_file . write_line ( " am_configuration: " + to_string_dec_uint ( receiver_model . am_configuration ( ) ) ) ;
pmem_dump_file . write_line ( " nbfm_configuration: " + to_string_dec_uint ( receiver_model . nbfm_configuration ( ) ) ) ;
pmem_dump_file . write_line ( " wfm_configuration: " + to_string_dec_uint ( receiver_model . wfm_configuration ( ) ) ) ;
2023-06-23 19:13:39 -04:00
2023-06-22 11:35:21 -04:00
// transmitter_model
2023-06-28 13:01:09 -04:00
pmem_dump_file . write_line ( " \n [Transmitter Model] " ) ;
2023-06-22 11:35:21 -04:00
pmem_dump_file . write_line ( " target_frequency: " + to_string_dec_uint ( transmitter_model . target_frequency ( ) ) ) ;
pmem_dump_file . write_line ( " rf_amp: " + to_string_dec_int ( transmitter_model . rf_amp ( ) ) ) ;
pmem_dump_file . write_line ( " baseband_bandwidth: " + to_string_dec_uint ( transmitter_model . baseband_bandwidth ( ) ) ) ;
pmem_dump_file . write_line ( " sampling_rate: " + to_string_dec_uint ( transmitter_model . sampling_rate ( ) ) ) ;
pmem_dump_file . write_line ( " tx_gain: " + to_string_dec_int ( transmitter_model . tx_gain ( ) ) ) ;
pmem_dump_file . write_line ( " channel_bandwidth: " + to_string_dec_uint ( transmitter_model . channel_bandwidth ( ) ) ) ;
2023-06-25 02:16:49 -04:00
// on screen information
2023-06-22 11:35:21 -04:00
painter . draw_string ( { 0 , 320 - 16 } , ui : : Styles : : green , filename . filename ( ) . string ( ) + " DUMPED ! " ) ;
return true ;
}
2023-05-18 16:16:05 -04:00
} /* namespace persistent_memory */
2015-08-04 13:03:18 -04:00
} /* namespace portapack */