| 
									
										
										
										
											2015-08-04 10:03:18 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc. | 
					
						
							| 
									
										
										
										
											2016-08-24 14:44:57 +02:00
										 |  |  |  * Copyright (C) 2016 Furrtek | 
					
						
							| 
									
										
										
										
											2015-08-04 10:03:18 -07: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"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-05 16:52:34 -08:00
										 |  |  | #include "portapack.hpp"
 | 
					
						
							| 
									
										
										
										
											2015-08-04 10:03:18 -07:00
										 |  |  | #include "hal.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-31 09:34:24 +01:00
										 |  |  | #include "utility.hpp"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-05 16:45:23 -08:00
										 |  |  | #include "memory_map.hpp"
 | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "crc.hpp"
 | 
					
						
							| 
									
										
										
										
											2016-02-05 16:45:23 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-04 10:03:18 -07:00
										 |  |  | #include <algorithm>
 | 
					
						
							|  |  |  | #include <utility>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace portapack { | 
					
						
							|  |  |  | namespace persistent_memory { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-27 14:17:57 -07:00
										 |  |  | constexpr rf::Frequency tuned_frequency_reset_value { 100000000 }; | 
					
						
							| 
									
										
										
										
											2015-08-04 10:31:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-04 10:03:18 -07:00
										 |  |  | using ppb_range_t = range_t<ppb_t>; | 
					
						
							|  |  |  | constexpr ppb_range_t ppb_range { -99000, 99000 }; | 
					
						
							| 
									
										
										
										
											2015-08-04 10:29:54 -07:00
										 |  |  | constexpr ppb_t ppb_reset_value { 0 }; | 
					
						
							| 
									
										
										
										
											2015-08-04 10:03:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-16 09:45:13 +01:00
										 |  |  | 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 }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-04 20:37:27 +02:00
										 |  |  | using afsk_freq_range_t = range_t<int32_t>; | 
					
						
							| 
									
										
										
										
											2017-04-21 06:22:31 +01:00
										 |  |  | 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 }; | 
					
						
							| 
									
										
										
										
											2015-09-03 06:34:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-21 06:22:31 +01:00
										 |  |  | 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 }; | 
					
						
							| 
									
										
										
										
											2015-09-03 06:34:00 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-24 20:05:42 +01:00
										 |  |  | /*using modem_bw_range_t = range_t<int32_t>;
 | 
					
						
							| 
									
										
										
										
											2017-04-21 06:22:31 +01:00
										 |  |  | constexpr modem_bw_range_t modem_bw_range { 1000, 50000 }; | 
					
						
							| 
									
										
										
										
											2017-09-24 20:05:42 +01:00
										 |  |  | constexpr int32_t modem_bw_reset_value { 15000 };*/ | 
					
						
							| 
									
										
										
										
											2017-04-21 06:22:31 +01: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 }; | 
					
						
							| 
									
										
										
										
											2015-09-16 15:43:43 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-24 00:24:05 +08:00
										 |  |  | using clkout_freq_range_t = range_t<uint32_t>; | 
					
						
							|  |  |  | constexpr clkout_freq_range_t clkout_freq_range { 10, 60000 }; | 
					
						
							|  |  |  | constexpr uint32_t clkout_freq_reset_value { 10000 }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | enum data_structure_version_enum : uint32_t { | 
					
						
							|  |  |  | 	VERSION_CURRENT = 0x10000002, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const uint32_t TOUCH_CALIBRATION_MAGIC = 0x074af82f; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct ui_config_t { | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 	enum bits_t { | 
					
						
							|  |  |  | 		BacklightTimeoutLSB    =  0, | 
					
						
							|  |  |  | 		BacklightTimeoutEnable =  3, | 
					
						
							|  |  |  | 		ClkoutFreqLSB          =  4, | 
					
						
							|  |  |  | 		ShowGUIReturnIcon      = 20, | 
					
						
							|  |  |  | 		LoadAppSettings        = 21, | 
					
						
							|  |  |  | 		SaveAppSettings        = 22, | 
					
						
							|  |  |  | 		ShowBiggerQRCode       = 23, | 
					
						
							|  |  |  | 		DisableTouchscreen     = 24, | 
					
						
							|  |  |  | 		HideClock              = 25, | 
					
						
							|  |  |  | 		ClockWithDate          = 26, | 
					
						
							|  |  |  | 		ClkOutEnabled          = 27, | 
					
						
							|  |  |  | 		ConfigSpeaker          = 28, | 
					
						
							|  |  |  | 		StealthMode            = 29, | 
					
						
							|  |  |  | 		ConfigLogin            = 30, | 
					
						
							|  |  |  | 		ConfigSplash           = 31, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	enum bits_mask_t : uint32_t { | 
					
						
							|  |  |  | 		BacklightTimeoutMask = ((1 <<  3) - 1) << bits_t::BacklightTimeoutLSB, | 
					
						
							|  |  |  | 		ClkoutFreqMask       = ((1 << 16) - 1) << bits_t::ClkoutFreqLSB, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	uint32_t values; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr bool bit_read(const bits_t n) const { | 
					
						
							|  |  |  | 		return ((values >> n) & 1) != 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr void bit_write(const bits_t n, const bool v) { | 
					
						
							|  |  |  | 		if(bit_read(n) != v) { | 
					
						
							|  |  |  | 			values ^= 1 << n; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  | 	backlight_config_t config_backlight_timer() { | 
					
						
							|  |  |  | 		const auto timeout_enum = (backlight_timeout_t)((values & bits_mask_t::BacklightTimeoutMask) >> bits_t::BacklightTimeoutLSB); | 
					
						
							|  |  |  | 		const bool timeout_enabled = bit_read(bits_t::BacklightTimeoutEnable); | 
					
						
							|  |  |  | 		return backlight_config_t(timeout_enum, timeout_enabled); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void set_config_backlight_timer(const backlight_config_t& new_value) { | 
					
						
							|  |  |  | 		values = (values & ~bits_mask_t::BacklightTimeoutMask) | 
					
						
							|  |  |  | 			| ((new_value.timeout_enum() << bits_t::BacklightTimeoutLSB) & bits_mask_t::BacklightTimeoutMask); | 
					
						
							|  |  |  | 		bit_write(bits_t::BacklightTimeoutEnable, new_value.timeout_enabled()); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr uint32_t clkout_freq() { | 
					
						
							|  |  |  | 		uint32_t freq = (values & bits_mask_t::ClkoutFreqMask) >> bits_t::ClkoutFreqLSB; | 
					
						
							|  |  |  | 		if(freq < clkout_freq_range.minimum || freq > clkout_freq_range.maximum) { | 
					
						
							|  |  |  | 			values = (values & ~bits_mask_t::ClkoutFreqMask) | (clkout_freq_reset_value << bits_t::ClkoutFreqLSB); | 
					
						
							|  |  |  | 			return clkout_freq_reset_value; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							|  |  |  | 			return freq; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr void set_clkout_freq(uint32_t freq) { | 
					
						
							|  |  |  | 		values = (values & ~bits_mask_t::ClkoutFreqMask) | (clkout_freq_range.clip(freq) << bits_t::ClkoutFreqLSB); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// ui_config is an uint32_t var storing information bitwise
 | 
					
						
							|  |  |  | 	// bits 0-2 store the backlight timer
 | 
					
						
							|  |  |  | 	// bits 4-19 (16 bits) store the clkout frequency
 | 
					
						
							|  |  |  | 	// bits 21-31 store the different single bit configs depicted below
 | 
					
						
							|  |  |  | 	// bit 20 store the display state of the gui return icon, hidden (0) or shown (1)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr bool show_gui_return_icon() const { // add return icon in touchscreen menue
 | 
					
						
							|  |  |  | 		return bit_read(bits_t::ShowGUIReturnIcon); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr void set_gui_return_icon(bool v) { | 
					
						
							|  |  |  | 		bit_write(bits_t::ShowGUIReturnIcon, v); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr bool load_app_settings() const { // load (last saved) app settings on startup of app
 | 
					
						
							|  |  |  | 		return bit_read(bits_t::LoadAppSettings); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr void set_load_app_settings(bool v) { | 
					
						
							|  |  |  | 		bit_write(bits_t::LoadAppSettings, v); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr bool save_app_settings() const { // save app settings when closing app
 | 
					
						
							|  |  |  | 		return bit_read(bits_t::SaveAppSettings); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr void set_save_app_settings(bool v) { | 
					
						
							|  |  |  | 		bit_write(bits_t::SaveAppSettings, v); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr bool show_bigger_qr_code() const { // show bigger QR code
 | 
					
						
							|  |  |  | 		return bit_read(bits_t::ShowBiggerQRCode); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr void set_show_bigger_qr_code(bool v) { | 
					
						
							|  |  |  | 		bit_write(bits_t::ShowBiggerQRCode, v); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr bool disable_touchscreen() const { // Option to disable touch screen
 | 
					
						
							|  |  |  | 		return bit_read(bits_t::DisableTouchscreen); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr void set_disable_touchscreen(bool v) { | 
					
						
							|  |  |  | 		bit_write(bits_t::DisableTouchscreen, v); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr bool hide_clock() const { // clock hidden from main menu
 | 
					
						
							|  |  |  | 		return bit_read(bits_t::HideClock); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr void set_clock_hidden(bool v) { | 
					
						
							|  |  |  | 		bit_write(bits_t::HideClock, v); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr bool clock_with_date() const { // show clock with date, if not hidden
 | 
					
						
							|  |  |  | 		return bit_read(bits_t::ClockWithDate); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr void set_clock_with_date(bool v) { | 
					
						
							|  |  |  | 		bit_write(bits_t::ClockWithDate, v); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr bool clkout_enabled() const { | 
					
						
							|  |  |  | 		return bit_read(bits_t::ClkOutEnabled); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr void set_clkout_enabled(bool v) { | 
					
						
							|  |  |  | 		bit_write(bits_t::ClkOutEnabled, v); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr bool config_speaker() const { | 
					
						
							|  |  |  | 		return bit_read(bits_t::ConfigSpeaker); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr void set_config_speaker(bool v) { | 
					
						
							|  |  |  | 		bit_write(bits_t::ConfigSpeaker, v); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr bool stealth_mode() const { | 
					
						
							|  |  |  | 		return bit_read(bits_t::StealthMode); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr void set_stealth_mode(bool v) { | 
					
						
							|  |  |  | 		bit_write(bits_t::StealthMode, v); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr bool config_login() const { | 
					
						
							|  |  |  | 		return bit_read(bits_t::ConfigLogin); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr void set_config_login(bool v) { | 
					
						
							|  |  |  | 		bit_write(bits_t::ConfigLogin, v); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr bool config_splash() const { | 
					
						
							|  |  |  | 		return bit_read(bits_t::ConfigSplash); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr void set_config_splash(bool v) { | 
					
						
							|  |  |  | 		bit_write(bits_t::ConfigSplash, v); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	constexpr ui_config_t() : | 
					
						
							|  |  |  | 		values( | 
					
						
							|  |  |  | 		      (1 << ConfigSplash) | 
					
						
							|  |  |  | 			| (1 << ConfigSpeaker) | 
					
						
							|  |  |  | 			| (clkout_freq_reset_value << ClkoutFreqLSB) | 
					
						
							|  |  |  | 			| (7 << BacklightTimeoutLSB) | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-04 10:03:18 -07:00
										 |  |  | /* struct must pack the same way on M4 and M0 cores. */ | 
					
						
							|  |  |  | struct data_t { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	data_structure_version_enum structure_version; | 
					
						
							| 
									
										
										
										
											2015-08-04 10:31:03 -07:00
										 |  |  | 	int64_t tuned_frequency; | 
					
						
							| 
									
										
										
										
											2015-08-04 10:29:10 -07:00
										 |  |  | 	int32_t correction_ppb; | 
					
						
							| 
									
										
										
										
											2016-07-27 15:30:43 -07:00
										 |  |  | 	uint32_t touch_calibration_magic; | 
					
						
							|  |  |  | 	touch::Calibration touch_calibration; | 
					
						
							| 
									
										
										
										
											2016-08-17 02:55:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-21 06:22:31 +01:00
										 |  |  | 	// Modem
 | 
					
						
							|  |  |  | 	uint32_t modem_def_index; | 
					
						
							|  |  |  | 	serial_format_t serial_format; | 
					
						
							|  |  |  | 	int32_t modem_bw; | 
					
						
							| 
									
										
										
										
											2015-09-04 20:37:27 +02:00
										 |  |  | 	int32_t afsk_mark_freq; | 
					
						
							| 
									
										
										
										
											2017-04-21 06:22:31 +01:00
										 |  |  | 	int32_t afsk_space_freq; | 
					
						
							|  |  |  | 	int32_t modem_baudrate; | 
					
						
							|  |  |  | 	int32_t modem_repeat; | 
					
						
							| 
									
										
										
										
											2022-04-06 13:28:10 +12:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-04 20:37:27 +02:00
										 |  |  | 	// Play dead unlock
 | 
					
						
							| 
									
										
										
										
											2016-12-26 13:49:23 +01:00
										 |  |  | 	uint32_t playdead_magic; | 
					
						
							| 
									
										
										
										
											2015-09-10 20:36:39 +02:00
										 |  |  | 	uint32_t playing_dead; | 
					
						
							| 
									
										
										
										
											2015-09-04 20:37:27 +02:00
										 |  |  | 	uint32_t playdead_sequence; | 
					
						
							| 
									
										
										
										
											2016-01-07 14:17:39 +01:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2018-01-08 03:47:37 +00:00
										 |  |  | 	// UI
 | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	ui_config_t ui_config; | 
					
						
							| 
									
										
										
										
											2017-03-05 15:37:56 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2017-04-21 06:22:31 +01:00
										 |  |  | 	uint32_t pocsag_last_address; | 
					
						
							|  |  |  | 	uint32_t pocsag_ignore_address; | 
					
						
							| 
									
										
										
										
											2018-05-16 09:45:13 +01:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	int32_t tone_mix; | 
					
						
							| 
									
										
										
										
											2022-04-07 21:22:47 +12:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Hardware
 | 
					
						
							|  |  |  | 	uint32_t hardware_config; | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-11 16:10:51 +02:00
										 |  |  |     // Recon App
 | 
					
						
							|  |  |  |     uint64_t recon_config; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	constexpr data_t() : | 
					
						
							|  |  |  | 		structure_version(data_structure_version_enum::VERSION_CURRENT), | 
					
						
							|  |  |  | 		tuned_frequency(tuned_frequency_reset_value), | 
					
						
							|  |  |  | 		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), | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-11 16:10:51 +02:00
										 |  |  | 		hardware_config(0), | 
					
						
							|  |  |  | 		recon_config(0) | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-08-04 10:03:18 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | struct backup_ram_t { | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  | 	uint32_t regfile[63]; | 
					
						
							|  |  |  | 	uint32_t check_value; | 
					
						
							| 
									
										
										
										
											2015-08-04 10:03:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	static void copy(const backup_ram_t& src, backup_ram_t& dst) { | 
					
						
							|  |  |  | 		for(size_t i=0; i<63; i++) { | 
					
						
							|  |  |  | 			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; | 
					
						
							|  |  |  | 		for(size_t i=0; i<63; i++) { | 
					
						
							|  |  |  | 			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 }; | 
					
						
							|  |  |  | 		for(size_t i=0; i<63; i++) { | 
					
						
							|  |  |  | 			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); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static_assert(sizeof(backup_ram_t) == memory::map::backup_ram.size()); | 
					
						
							|  |  |  | static_assert(sizeof(data_t) <= sizeof(backup_ram_t) - sizeof(uint32_t)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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* const data = reinterpret_cast<data_t*>(&cached_backup_ram); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace cache { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void defaults() { | 
					
						
							|  |  |  | 	cached_backup_ram = backup_ram_t(); | 
					
						
							| 
									
										
										
										
											2023-03-04 22:04:53 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// defaults values for recon app
 | 
					
						
							|  |  |  | 	set_recon_autosave_freqs( false ); | 
					
						
							|  |  |  | 	set_recon_autostart_recon( true ); | 
					
						
							|  |  |  | 	set_recon_continuous( true ); | 
					
						
							|  |  |  | 	set_recon_clear_output( false ); | 
					
						
							|  |  |  | 	set_recon_load_freqs( true ); | 
					
						
							|  |  |  | 	set_recon_load_ranges( true ); | 
					
						
							|  |  |  | 	set_recon_update_ranges_when_recon( true ); | 
					
						
							|  |  |  | 	set_recon_load_hamradios( true ); | 
					
						
							|  |  |  | 	set_recon_match_mode( 0 ); | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void init() { | 
					
						
							|  |  |  | 	if(backup_ram->is_valid()) { | 
					
						
							|  |  |  | 		// 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(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void persist() { | 
					
						
							|  |  |  | 	cached_backup_ram.persist_to(*backup_ram); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } /* namespace cache */ | 
					
						
							| 
									
										
										
										
											2015-08-04 10:03:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-04 10:31:03 -07:00
										 |  |  | rf::Frequency tuned_frequency() { | 
					
						
							| 
									
										
										
										
											2016-01-31 09:34:24 +01:00
										 |  |  | 	rf::tuning_range.reset_if_outside(data->tuned_frequency, tuned_frequency_reset_value); | 
					
						
							| 
									
										
										
										
											2015-08-04 10:31:03 -07:00
										 |  |  | 	return data->tuned_frequency; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void set_tuned_frequency(const rf::Frequency new_value) { | 
					
						
							| 
									
										
										
										
											2016-01-31 09:34:24 +01:00
										 |  |  | 	data->tuned_frequency = rf::tuning_range.clip(new_value); | 
					
						
							| 
									
										
										
										
											2015-08-04 10:31:03 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-04 10:03:18 -07:00
										 |  |  | ppb_t correction_ppb() { | 
					
						
							| 
									
										
										
										
											2015-08-04 10:29:54 -07:00
										 |  |  | 	ppb_range.reset_if_outside(data->correction_ppb, ppb_reset_value); | 
					
						
							| 
									
										
										
										
											2015-08-04 10:03:18 -07:00
										 |  |  | 	return data->correction_ppb; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-04 10:28:23 -07:00
										 |  |  | void set_correction_ppb(const ppb_t new_value) { | 
					
						
							| 
									
										
										
										
											2016-02-05 16:52:34 -08:00
										 |  |  | 	const auto clipped_value = ppb_range.clip(new_value); | 
					
						
							|  |  |  | 	data->correction_ppb = clipped_value; | 
					
						
							|  |  |  | 	portapack::clock_manager.set_reference_ppb(clipped_value); | 
					
						
							| 
									
										
										
										
											2015-08-04 10:03:18 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-27 15:30:43 -07:00
										 |  |  | void set_touch_calibration(const touch::Calibration& new_value) { | 
					
						
							|  |  |  | 	data->touch_calibration = new_value; | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	data->touch_calibration_magic = TOUCH_CALIBRATION_MAGIC; | 
					
						
							| 
									
										
										
										
											2016-07-27 15:30:43 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const touch::Calibration& touch_calibration() { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	if( data->touch_calibration_magic != TOUCH_CALIBRATION_MAGIC ) { | 
					
						
							|  |  |  | 		set_touch_calibration(touch::Calibration()); | 
					
						
							| 
									
										
										
										
											2016-07-27 15:30:43 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return data->touch_calibration; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-16 09:45:13 +01:00
										 |  |  | 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); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-04 20:37:27 +02:00
										 |  |  | int32_t afsk_mark_freq() { | 
					
						
							| 
									
										
										
										
											2015-09-03 06:34:00 +02:00
										 |  |  | 	afsk_freq_range.reset_if_outside(data->afsk_mark_freq, afsk_mark_reset_value); | 
					
						
							| 
									
										
										
										
											2015-09-04 20:37:27 +02:00
										 |  |  | 	return data->afsk_mark_freq; | 
					
						
							| 
									
										
										
										
											2015-09-03 06:34:00 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-04 20:37:27 +02:00
										 |  |  | void set_afsk_mark(const int32_t new_value) { | 
					
						
							| 
									
										
										
										
											2015-09-03 06:34:00 +02:00
										 |  |  | 	data->afsk_mark_freq = afsk_freq_range.clip(new_value); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-04 20:37:27 +02:00
										 |  |  | int32_t afsk_space_freq() { | 
					
						
							| 
									
										
										
										
											2015-09-03 06:34:00 +02:00
										 |  |  | 	afsk_freq_range.reset_if_outside(data->afsk_space_freq, afsk_space_reset_value); | 
					
						
							| 
									
										
										
										
											2015-09-04 20:37:27 +02:00
										 |  |  | 	return data->afsk_space_freq; | 
					
						
							| 
									
										
										
										
											2015-09-03 06:34:00 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-04 20:37:27 +02:00
										 |  |  | void set_afsk_space(const int32_t new_value) { | 
					
						
							| 
									
										
										
										
											2015-09-03 06:34:00 +02:00
										 |  |  | 	data->afsk_space_freq = afsk_freq_range.clip(new_value); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-21 06:22:31 +01:00
										 |  |  | int32_t modem_baudrate() { | 
					
						
							|  |  |  | 	modem_baudrate_range.reset_if_outside(data->modem_baudrate, modem_baudrate_reset_value); | 
					
						
							|  |  |  | 	return data->modem_baudrate; | 
					
						
							| 
									
										
										
										
											2015-09-03 06:34:00 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-21 06:22:31 +01:00
										 |  |  | void set_modem_baudrate(const int32_t new_value) { | 
					
						
							|  |  |  | 	data->modem_baudrate = modem_baudrate_range.clip(new_value); | 
					
						
							| 
									
										
										
										
											2015-09-03 06:34:00 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-24 20:05:42 +01:00
										 |  |  | /*int32_t modem_bw() {
 | 
					
						
							| 
									
										
										
										
											2017-04-21 06:22:31 +01:00
										 |  |  | 	modem_bw_range.reset_if_outside(data->modem_bw, modem_bw_reset_value); | 
					
						
							|  |  |  | 	return data->modem_bw; | 
					
						
							| 
									
										
										
										
											2015-09-16 15:43:43 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-21 06:22:31 +01:00
										 |  |  | void set_modem_bw(const int32_t new_value) { | 
					
						
							|  |  |  | 	data->modem_bw = modem_bw_range.clip(new_value); | 
					
						
							| 
									
										
										
										
											2017-09-24 20:05:42 +01:00
										 |  |  | }*/ | 
					
						
							| 
									
										
										
										
											2015-09-16 15:43:43 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-21 06:22:31 +01:00
										 |  |  | uint8_t modem_repeat() { | 
					
						
							|  |  |  | 	modem_repeat_range.reset_if_outside(data->modem_repeat, modem_repeat_reset_value); | 
					
						
							|  |  |  | 	return data->modem_repeat; | 
					
						
							| 
									
										
										
										
											2015-09-03 06:34:00 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-21 06:22:31 +01:00
										 |  |  | void set_modem_repeat(const uint32_t new_value) { | 
					
						
							|  |  |  | 	data->modem_repeat = modem_repeat_range.clip(new_value); | 
					
						
							| 
									
										
										
										
											2016-08-02 12:44:31 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-21 06:22:31 +01:00
										 |  |  | serial_format_t serial_format() { | 
					
						
							|  |  |  | 	return data->serial_format; | 
					
						
							| 
									
										
										
										
											2016-07-28 00:08:05 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-21 06:22:31 +01:00
										 |  |  | void set_serial_format(const serial_format_t new_value) { | 
					
						
							|  |  |  | 	data->serial_format = new_value; | 
					
						
							| 
									
										
										
										
											2015-09-03 06:34:00 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | bool show_gui_return_icon() { // add return icon in touchscreen menue
 | 
					
						
							|  |  |  | 	return data->ui_config.show_gui_return_icon(); | 
					
						
							| 
									
										
										
										
											2022-05-04 10:29:12 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-15 08:43:44 -04:00
										 |  |  | bool load_app_settings() { // load (last saved) app settings on startup of app
 | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	return data->ui_config.load_app_settings(); | 
					
						
							| 
									
										
										
										
											2015-09-04 20:37:27 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-05-03 14:23:58 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-15 08:43:44 -04:00
										 |  |  | bool save_app_settings() { // save app settings when closing app
 | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	return data->ui_config.save_app_settings(); | 
					
						
							| 
									
										
										
										
											2022-01-26 21:52:08 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-04-08 16:10:55 +02:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2022-04-08 08:38:32 -04:00
										 |  |  | bool show_bigger_qr_code() { // show bigger QR code
 | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	return data->ui_config.show_bigger_qr_code(); | 
					
						
							| 
									
										
										
										
											2022-04-08 08:38:32 -04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-01-26 21:52:08 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-03 14:23:58 +02:00
										 |  |  | bool disable_touchscreen() { // Option to disable touch screen
 | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	return data->ui_config.disable_touchscreen(); | 
					
						
							| 
									
										
										
										
											2022-05-03 14:23:58 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-16 11:41:09 +02:00
										 |  |  | bool hide_clock() { // clock hidden from main menu
 | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	return data->ui_config.hide_clock(); | 
					
						
							| 
									
										
										
										
											2021-05-16 11:41:09 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | bool clock_with_date() { // show clock with date, if not hidden
 | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	return data->ui_config.clock_with_date(); | 
					
						
							| 
									
										
										
										
											2021-05-16 11:41:09 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-03 02:14:16 -03:00
										 |  |  | bool clkout_enabled() { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	return data->ui_config.clkout_enabled(); | 
					
						
							| 
									
										
										
										
											2015-09-04 20:37:27 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-08 01:21:11 +02:00
										 |  |  | bool config_speaker() { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	return data->ui_config.config_speaker(); | 
					
						
							| 
									
										
										
										
											2020-06-08 01:21:11 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-09 18:21:47 +01:00
										 |  |  | bool stealth_mode() { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	return data->ui_config.stealth_mode(); | 
					
						
							| 
									
										
										
										
											2016-12-09 18:21:47 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-03 02:14:16 -03:00
										 |  |  | bool config_login() { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	return data->ui_config.config_login(); | 
					
						
							| 
									
										
										
										
											2016-12-09 18:21:47 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-08 03:47:37 +00:00
										 |  |  | bool config_splash() { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	return data->ui_config.config_splash(); | 
					
						
							| 
									
										
										
										
											2016-01-07 14:17:39 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-06 13:28:10 +12:00
										 |  |  | uint8_t config_cpld() { | 
					
						
							|  |  |  | 	return data->hardware_config; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | backlight_config_t config_backlight_timer() { | 
					
						
							|  |  |  | 	return data->ui_config.config_backlight_timer(); | 
					
						
							| 
									
										
										
										
											2020-11-03 02:14:16 -03:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-01-07 14:17:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-03 14:23:58 +02:00
										 |  |  | void set_gui_return_icon(bool v) { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	data->ui_config.set_gui_return_icon(v); | 
					
						
							| 
									
										
										
										
											2022-05-04 10:29:12 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-05-03 14:31:03 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-15 08:43:44 -04:00
										 |  |  | void set_load_app_settings(bool v) { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	data->ui_config.set_load_app_settings(v); | 
					
						
							| 
									
										
										
										
											2022-01-26 21:52:08 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-04-15 08:43:44 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | void set_save_app_settings(bool v) { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	data->ui_config.set_save_app_settings(v); | 
					
						
							| 
									
										
										
										
											2022-01-26 21:52:08 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-04-15 08:43:44 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-08 08:38:32 -04:00
										 |  |  | void set_show_bigger_qr_code(bool v) { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	data->ui_config.set_show_bigger_qr_code(v); | 
					
						
							| 
									
										
										
										
											2022-04-08 08:38:32 -04:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-01-26 21:52:08 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-03 14:23:58 +02:00
										 |  |  | void set_disable_touchscreen(bool v) { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	data->ui_config.set_disable_touchscreen(v); | 
					
						
							| 
									
										
										
										
											2022-05-03 14:23:58 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-16 11:41:09 +02:00
										 |  |  | void set_clock_hidden(bool v) { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	data->ui_config.set_clock_hidden(v); | 
					
						
							| 
									
										
										
										
											2021-05-16 11:41:09 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void set_clock_with_date(bool v) { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	data->ui_config.set_clock_with_date(v); | 
					
						
							| 
									
										
										
										
											2021-05-16 11:41:09 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-03 02:14:16 -03:00
										 |  |  | void set_clkout_enabled(bool v) { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	data->ui_config.set_clkout_enabled(v); | 
					
						
							| 
									
										
										
										
											2018-01-08 03:47:37 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-03 02:14:16 -03:00
										 |  |  | void set_config_speaker(bool v) { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	data->ui_config.set_config_speaker(v); | 
					
						
							| 
									
										
										
										
											2020-11-03 02:14:16 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void set_stealth_mode(bool v) { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	data->ui_config.set_stealth_mode(v); | 
					
						
							| 
									
										
										
										
											2018-01-08 03:47:37 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2016-01-07 14:17:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-08 03:47:37 +00:00
										 |  |  | void set_config_login(bool v) { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	data->ui_config.set_config_login(v); | 
					
						
							| 
									
										
										
										
											2020-11-03 02:14:16 -03:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void set_config_splash(bool v) { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	data->ui_config.set_config_splash(v); | 
					
						
							| 
									
										
										
										
											2016-01-07 14:17:39 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-06 13:28:10 +12:00
										 |  |  | void set_config_cpld(uint8_t i) { | 
					
						
							|  |  |  | 	data->hardware_config = i; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | void set_config_backlight_timer(const backlight_config_t& new_value) { | 
					
						
							|  |  |  | 	data->ui_config.set_config_backlight_timer(new_value); | 
					
						
							| 
									
										
										
										
											2018-01-08 03:47:37 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*void set_config_textentry(uint8_t new_value) {
 | 
					
						
							| 
									
										
										
										
											2016-12-09 18:21:47 +01:00
										 |  |  | 	data->ui_config = (data->ui_config & ~0b100) | ((new_value & 1) << 2); | 
					
						
							| 
									
										
										
										
											2016-05-29 12:06:47 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | uint8_t ui_config_textentry() { | 
					
						
							|  |  |  | 	return ((data->ui_config >> 2) & 1); | 
					
						
							| 
									
										
										
										
											2018-01-08 03:47:37 +00:00
										 |  |  | }*/ | 
					
						
							| 
									
										
										
										
											2016-05-29 12:06:47 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-08 03:47:37 +00:00
										 |  |  | /*void set_ui_config(const uint32_t new_value) {
 | 
					
						
							| 
									
										
										
										
											2016-01-07 14:17:39 +01:00
										 |  |  | 	data->ui_config = new_value; | 
					
						
							| 
									
										
										
										
											2018-01-08 03:47:37 +00:00
										 |  |  | }*/ | 
					
						
							| 
									
										
										
										
											2016-01-07 14:17:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-21 06:22:31 +01: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; | 
					
						
							| 
									
										
										
										
											2017-03-05 15:37:56 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-21 06:22:31 +01:00
										 |  |  | void set_pocsag_ignore_address(uint32_t address) { | 
					
						
							|  |  |  | 	data->pocsag_ignore_address = address; | 
					
						
							| 
									
										
										
										
											2017-03-05 15:37:56 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-24 00:24:05 +08:00
										 |  |  | uint32_t clkout_freq() { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	return data->ui_config.clkout_freq(); | 
					
						
							| 
									
										
										
										
											2020-10-24 00:24:05 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void set_clkout_freq(uint32_t freq) { | 
					
						
							| 
									
										
										
										
											2022-05-28 13:55:18 -07:00
										 |  |  | 	data->ui_config.set_clkout_freq(freq); | 
					
						
							| 
									
										
										
										
											2020-10-24 00:24:05 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-09-11 16:10:51 +02: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;  | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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);  | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-11-03 02:14:16 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-04 10:03:18 -07:00
										 |  |  | } /* namespace persistent_memory */ | 
					
						
							|  |  |  | } /* namespace portapack */ |