2015-08-04 13:03:18 -04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Jared Boone, ShareBrained Technology, Inc.
|
|
|
|
*
|
|
|
|
* 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"
|
|
|
|
|
|
|
|
#include "hal.h"
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
namespace portapack {
|
|
|
|
namespace persistent_memory {
|
|
|
|
|
|
|
|
/* TODO: This is widely applicable. Factor this to somewhere useful. */
|
|
|
|
template<class T>
|
|
|
|
struct range_t {
|
|
|
|
const T minimum;
|
|
|
|
const T maximum;
|
|
|
|
|
|
|
|
const T& clip(const T& value) const {
|
|
|
|
return std::max(std::min(value, maximum), minimum);
|
|
|
|
}
|
|
|
|
|
|
|
|
void reset_if_outside(T& value, const T& reset_value) const {
|
|
|
|
if( (value < minimum ) ||
|
|
|
|
(value > maximum ) ) {
|
|
|
|
value = reset_value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-08-04 13:31:03 -04:00
|
|
|
using tuned_frequency_range_t = range_t<rf::Frequency>;
|
|
|
|
constexpr tuned_frequency_range_t tuned_frequency_range { rf::tuning_range.min, rf::tuning_range.max };
|
|
|
|
constexpr rf::Frequency tuned_frequency_reset_value { 858750000 };
|
|
|
|
|
2015-08-04 13:03:18 -04:00
|
|
|
using ppb_range_t = range_t<ppb_t>;
|
|
|
|
constexpr ppb_range_t ppb_range { -99000, 99000 };
|
2015-08-04 13:29:54 -04:00
|
|
|
constexpr ppb_t ppb_reset_value { 0 };
|
2015-08-04 13:03:18 -04:00
|
|
|
|
2015-09-04 14:37:27 -04:00
|
|
|
using afsk_freq_range_t = range_t<int32_t>;
|
|
|
|
constexpr afsk_freq_range_t afsk_freq_range { 1, 60 };
|
|
|
|
constexpr int32_t afsk_mark_reset_value { 12 };
|
|
|
|
constexpr int32_t afsk_space_reset_value { 22 };
|
2015-09-03 00:34:00 -04:00
|
|
|
|
2015-09-04 14:37:27 -04:00
|
|
|
using afsk_bitrate_range_t = range_t<int32_t>;
|
2015-09-03 00:34:00 -04:00
|
|
|
constexpr afsk_bitrate_range_t afsk_bitrate_range { 600, 9600 };
|
2015-09-04 14:37:27 -04:00
|
|
|
constexpr int32_t afsk_bitrate_reset_value { 1200 };
|
2015-09-03 00:34:00 -04:00
|
|
|
|
2015-08-04 13:03:18 -04:00
|
|
|
/* struct must pack the same way on M4 and M0 cores. */
|
|
|
|
struct data_t {
|
2015-09-03 00:34:00 -04:00
|
|
|
// General config
|
2015-08-04 13:31:03 -04:00
|
|
|
int64_t tuned_frequency;
|
2015-08-04 13:29:10 -04:00
|
|
|
int32_t correction_ppb;
|
2015-09-03 00:34:00 -04:00
|
|
|
|
|
|
|
// AFSK modem
|
2015-09-04 14:37:27 -04:00
|
|
|
int32_t afsk_mark_freq;
|
2015-09-05 14:17:43 -04:00
|
|
|
int32_t afsk_space_freq; // Todo: optimize size, only 256 bytes of NVRAM !
|
2015-09-04 14:37:27 -04:00
|
|
|
int32_t afsk_bitrate;
|
2015-09-05 14:17:43 -04:00
|
|
|
uint32_t afsk_config;
|
2015-09-04 14:37:27 -04:00
|
|
|
|
|
|
|
// Play dead unlock
|
2015-09-10 14:36:39 -04:00
|
|
|
uint32_t playing_dead;
|
2015-09-04 14:37:27 -04:00
|
|
|
uint32_t playdead_sequence;
|
2015-08-04 13:03:18 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
static_assert(sizeof(data_t) <= 0x100, "Persistent memory structure too large for VBAT-maintained region");
|
|
|
|
|
|
|
|
static data_t* const data = reinterpret_cast<data_t*>(LPC_BACKUP_REG_BASE);
|
|
|
|
|
2015-08-04 13:31:03 -04:00
|
|
|
rf::Frequency tuned_frequency() {
|
|
|
|
tuned_frequency_range.reset_if_outside(data->tuned_frequency, tuned_frequency_reset_value);
|
|
|
|
return data->tuned_frequency;
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_tuned_frequency(const rf::Frequency new_value) {
|
|
|
|
data->tuned_frequency = tuned_frequency_range.clip(new_value);
|
|
|
|
}
|
|
|
|
|
2015-08-04 13:03:18 -04:00
|
|
|
ppb_t correction_ppb() {
|
2015-08-04 13:29:54 -04:00
|
|
|
ppb_range.reset_if_outside(data->correction_ppb, ppb_reset_value);
|
2015-08-04 13:03:18 -04:00
|
|
|
return data->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
|
|
|
data->correction_ppb = ppb_range.clip(new_value);
|
|
|
|
}
|
|
|
|
|
2015-09-04 14:37:27 -04:00
|
|
|
int32_t afsk_mark_freq() {
|
2015-09-03 00:34:00 -04:00
|
|
|
afsk_freq_range.reset_if_outside(data->afsk_mark_freq, afsk_mark_reset_value);
|
2015-09-04 14:37:27 -04:00
|
|
|
return data->afsk_mark_freq;
|
2015-09-03 00:34:00 -04:00
|
|
|
}
|
|
|
|
|
2015-09-04 14:37:27 -04:00
|
|
|
void set_afsk_mark(const int32_t new_value) {
|
2015-09-03 00:34:00 -04:00
|
|
|
data->afsk_mark_freq = afsk_freq_range.clip(new_value);
|
|
|
|
}
|
|
|
|
|
2015-09-04 14:37:27 -04:00
|
|
|
int32_t afsk_space_freq() {
|
2015-09-03 00:34:00 -04:00
|
|
|
afsk_freq_range.reset_if_outside(data->afsk_space_freq, afsk_space_reset_value);
|
2015-09-04 14:37:27 -04:00
|
|
|
return data->afsk_space_freq;
|
2015-09-03 00:34:00 -04:00
|
|
|
}
|
|
|
|
|
2015-09-04 14:37:27 -04:00
|
|
|
void set_afsk_space(const int32_t new_value) {
|
2015-09-03 00:34:00 -04:00
|
|
|
data->afsk_space_freq = afsk_freq_range.clip(new_value);
|
|
|
|
}
|
|
|
|
|
2015-09-04 14:37:27 -04:00
|
|
|
int32_t afsk_bitrate() {
|
2015-09-03 00:34:00 -04:00
|
|
|
afsk_bitrate_range.reset_if_outside(data->afsk_bitrate, afsk_bitrate_reset_value);
|
2015-09-04 14:37:27 -04:00
|
|
|
return data->afsk_bitrate;
|
2015-09-03 00:34:00 -04:00
|
|
|
}
|
|
|
|
|
2015-09-04 14:37:27 -04:00
|
|
|
void set_afsk_bitrate(const int32_t new_value) {
|
2015-09-03 00:34:00 -04:00
|
|
|
data->afsk_bitrate = afsk_bitrate_range.clip(new_value);
|
|
|
|
}
|
|
|
|
|
2015-09-05 14:17:43 -04:00
|
|
|
uint32_t afsk_config() {
|
2015-09-03 00:34:00 -04:00
|
|
|
return data->afsk_config;
|
|
|
|
}
|
|
|
|
|
2015-09-05 14:17:43 -04:00
|
|
|
void set_afsk_config(const uint32_t new_value) {
|
2015-09-03 00:34:00 -04:00
|
|
|
data->afsk_config = new_value;
|
|
|
|
}
|
|
|
|
|
2015-09-10 14:36:39 -04:00
|
|
|
uint32_t playing_dead() {
|
2015-09-04 14:37:27 -04:00
|
|
|
return data->playing_dead;
|
|
|
|
}
|
|
|
|
|
2015-09-10 14:36:39 -04:00
|
|
|
void set_playing_dead(const uint32_t new_value) {
|
2015-09-04 14:37:27 -04:00
|
|
|
data->playing_dead = new_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t playdead_sequence() {
|
|
|
|
return data->playdead_sequence;
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_playdead_sequence(const uint32_t new_value) {
|
|
|
|
data->playdead_sequence = new_value;
|
|
|
|
}
|
|
|
|
|
2015-08-04 13:03:18 -04:00
|
|
|
} /* namespace persistent_memory */
|
|
|
|
} /* namespace portapack */
|