-
Notifications
You must be signed in to change notification settings - Fork 5
/
nvram.h
160 lines (139 loc) · 5.06 KB
/
nvram.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
// -*- Mode: C++; c-basic-offset: 8; indent-tabs-mode: nil -*-
//-
// Copyright (c) 2010 Michael Smith. All rights reserved.
// Modified 2011 By Colin G http://www.diydrones.com/profile/ColinG
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
// OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
// OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
// SUCH DAMAGE.
/// @file nvram.h
/// @brief non-volatile memory
#define NV_VERSION 1
// "123456789012"
PROGMEM const prog_char SettingNames[] = "Serial Speed\n"
"Low Voltage \n"
"Use Compass \n"
"Stream Rate \n"
"Mute Buttons\n"
"Alarm Sounds\n"
"MAV Number \n"
"GPS Timezone\n"
"SD Logging \n"
"TX Heartbeat\n"
"Repeat Delay\n"
"Hold Delay \n"
"Key Rotation\n";
enum SETTINGS_ORDER {
// Settings page ordering
SERIAL_SPEED=0,
LOW_VOLTAGE,
USE_COMPASS,
STREAM_RATE,
MUTE_BUTTONS,
ALARM_SOUNDS,
MAV_NUMBER,
GPS_TIMEZONE,
SD_LOGGING,
TX_HEARTBEAT,
REPEAT_DELAY,
HOLD_DELAY,
KEYPAD_ORIENTATION,
// Parameter count
ASM_SETTINGS_COUNT
};
enum SERIAL_SPEEDS {
// Available serial speeds
SERIAL_9600=0,
SERIAL_19200,
SERIAL_38400,
SERIAL_57600,
SERIAL_115200,
SERIAL_SPEED_COUNT
};
const uint8_t SettingScales[] = {0,0,0,0,0,0,0,0,0,0,0,0,0}; // *10^(-x)
const uint8_t SettingDPs[] = {0,0,0,0,0,0,0,0,0,0,0,0,0}; // 99 in both denotes boolean
/// Simple non-volatile memory support.
///
class NVRAM {
public:
NVRAM() {};
/// Load all variables from NVRAM
///
void load(void);
/// Load parameters from NVRAM
///
void load_param(uint8_t *param_id, float *param_value);
/// Load setting from NVRAM
///
void load_setting(uint8_t *setting_id, float *setting_value);
void load_setting(uint8_t *setting_id, int16_t *setting_value);
/// Write setting to NVRAM
///
void write_setting(uint8_t *setting_id, float *setting_value);
void write_setting(uint8_t *setting_id, int16_t *setting_value);
/// Load text format of setting from NVRAM
///
void load_setting_text(uint8_t *setting_id, int16_t setting_value, char text_value[7]);
/// Get limits for a setting's value
///
void get_setting_bounds(uint8_t *setting_id, int16_t *lower_val, int16_t *upper_val);
/// Save all variables to NVRAM
///
void save(void);
/// Save parameters to NVRAM
///
void save_param(uint8_t *param_id, float *param_value);
/// Definition of the load/save area
///
struct nv_data {
uint8_t serialSpeed;
uint16_t lowVoltage;
uint8_t useCompass;
uint8_t streamRate;
uint8_t buttonMute;
uint8_t alarmSounds;
uint8_t mavNumber;
int8_t gpsTimezone;
uint8_t sdLogging;
uint8_t txHeartbeats;
uint8_t keypadRepeatDelay;
uint16_t keypadHoldDelay;
uint8_t keypadRotation;
};
struct nv_data nv; ///< saved variables
private:
/// Read bytes from NVRAM
///
/// @param address offset in NVRAM to read from
/// @param size count of bytes to read
/// @param value buffer to read into
///
void _loadx(uint8_t address, uint8_t size, void *value);
/// Write bytes to NVRAM
///
/// @param address offset in NVRAM to write to
/// @param size count of bytes to write
/// @param value buffer to write from
///
void _savex(uint8_t address, uint8_t size, void *value);
/// Reset downloaded parameters
///
void _reset_params(void);
};