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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __PORTAPACK_PERSISTENT_MEMORY_H__
|
|
|
|
#define __PORTAPACK_PERSISTENT_MEMORY_H__
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
2015-08-04 13:31:03 -04:00
|
|
|
#include "rf_path.hpp"
|
2016-07-27 18:30:43 -04:00
|
|
|
#include "touch.hpp"
|
2017-04-21 01:22:31 -04:00
|
|
|
#include "modems.hpp"
|
2017-04-24 13:15:57 -04:00
|
|
|
#include "serializer.hpp"
|
2017-04-21 01:22:31 -04:00
|
|
|
|
|
|
|
using namespace modems;
|
2017-04-24 13:15:57 -04:00
|
|
|
using namespace serializer;
|
2015-08-04 13:31:03 -04:00
|
|
|
|
2015-08-04 13:03:18 -04:00
|
|
|
namespace portapack {
|
|
|
|
namespace persistent_memory {
|
|
|
|
|
|
|
|
using ppb_t = int32_t;
|
|
|
|
|
2015-08-04 13:31:03 -04:00
|
|
|
rf::Frequency tuned_frequency();
|
|
|
|
void set_tuned_frequency(const rf::Frequency new_value);
|
|
|
|
|
2015-08-04 13:03:18 -04:00
|
|
|
ppb_t correction_ppb();
|
2015-08-04 13:28:23 -04:00
|
|
|
void set_correction_ppb(const ppb_t new_value);
|
2015-08-04 13:03:18 -04:00
|
|
|
|
2016-07-27 18:30:43 -04:00
|
|
|
void set_touch_calibration(const touch::Calibration& new_value);
|
|
|
|
const touch::Calibration& touch_calibration();
|
|
|
|
|
2017-04-21 01:22:31 -04:00
|
|
|
serial_format_t serial_format();
|
|
|
|
void set_serial_format(const serial_format_t new_value);
|
|
|
|
|
2018-05-16 04:45:13 -04:00
|
|
|
int32_t tone_mix();
|
|
|
|
void set_tone_mix(const int32_t new_value);
|
|
|
|
|
2015-09-04 14:37:27 -04:00
|
|
|
int32_t afsk_mark_freq();
|
|
|
|
void set_afsk_mark(const int32_t new_value);
|
2015-09-03 00:34:00 -04:00
|
|
|
|
2015-09-04 14:37:27 -04:00
|
|
|
int32_t afsk_space_freq();
|
|
|
|
void set_afsk_space(const int32_t new_value);
|
2015-09-03 00:34:00 -04:00
|
|
|
|
2017-04-21 01:22:31 -04:00
|
|
|
int32_t modem_baudrate();
|
|
|
|
void set_modem_baudrate(const int32_t new_value);
|
2015-09-03 00:34:00 -04:00
|
|
|
|
2017-04-21 01:22:31 -04:00
|
|
|
uint8_t modem_repeat();
|
|
|
|
void set_modem_repeat(const uint32_t new_value);
|
2015-09-16 09:43:43 -04:00
|
|
|
|
2015-09-10 14:36:39 -04:00
|
|
|
uint32_t playing_dead();
|
|
|
|
void set_playing_dead(const uint32_t new_value);
|
2015-09-04 14:37:27 -04:00
|
|
|
|
|
|
|
uint32_t playdead_sequence();
|
|
|
|
void set_playdead_sequence(const uint32_t new_value);
|
|
|
|
|
2016-12-09 12:21:47 -05:00
|
|
|
bool stealth_mode();
|
2018-01-07 22:47:37 -05:00
|
|
|
void set_stealth_mode(const bool v);
|
2016-12-09 12:21:47 -05:00
|
|
|
|
2018-01-07 22:47:37 -05:00
|
|
|
bool config_splash();
|
2021-05-16 05:41:09 -04:00
|
|
|
bool hide_clock();
|
|
|
|
bool clock_with_date();
|
2018-01-07 22:47:37 -05:00
|
|
|
bool config_login();
|
2020-06-07 19:21:11 -04:00
|
|
|
bool config_speaker();
|
2018-01-07 22:47:37 -05:00
|
|
|
uint32_t config_backlight_timer();
|
2016-05-29 06:06:47 -04:00
|
|
|
|
2018-01-07 22:47:37 -05:00
|
|
|
void set_config_splash(bool v);
|
2021-05-16 05:41:09 -04:00
|
|
|
void set_clock_hidden(bool v);
|
|
|
|
void set_clock_with_date(bool v);
|
2018-01-07 22:47:37 -05:00
|
|
|
void set_config_login(bool v);
|
2020-11-03 00:14:16 -05:00
|
|
|
void set_config_speaker(bool v);
|
2018-01-07 22:47:37 -05:00
|
|
|
void set_config_backlight_timer(uint32_t i);
|
2016-01-07 08:17:39 -05:00
|
|
|
|
2018-01-07 22:47:37 -05:00
|
|
|
//uint8_t ui_config_textentry();
|
|
|
|
//void set_config_textentry(uint8_t new_value);
|
2016-05-29 06:06:47 -04:00
|
|
|
|
2017-04-21 01:22:31 -04:00
|
|
|
uint32_t pocsag_last_address();
|
|
|
|
void set_pocsag_last_address(uint32_t address);
|
|
|
|
|
|
|
|
uint32_t pocsag_ignore_address();
|
|
|
|
void set_pocsag_ignore_address(uint32_t address);
|
2017-03-05 10:37:56 -05:00
|
|
|
|
2020-09-16 07:27:56 -04:00
|
|
|
bool clkout_enabled();
|
2020-11-03 00:14:16 -05:00
|
|
|
void set_clkout_enabled(bool v);
|
2020-10-23 12:24:05 -04:00
|
|
|
uint32_t clkout_freq();
|
|
|
|
void set_clkout_freq(uint32_t freq);
|
2020-09-16 07:27:56 -04:00
|
|
|
|
2015-08-04 13:03:18 -04:00
|
|
|
} /* namespace persistent_memory */
|
|
|
|
} /* namespace portapack */
|
|
|
|
|
|
|
|
#endif/*__PORTAPACK_PERSISTENT_MEMORY_H__*/
|