-
Notifications
You must be signed in to change notification settings - Fork 7
/
EEPROM_lib.h
43 lines (34 loc) · 1.33 KB
/
EEPROM_lib.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
/*
EEPROM_lib.h - Library for making it easier to save/load values to the Arduino's EEPROM for my QuadCopter
Created by Myles Grant <[email protected]>
See also: https://github.com/grantmd/QuadCopter
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 3 of the License, 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. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef EEPROM_LIB_h
#define EEPROM_LIB_h
#include "WProgram.h"
#include "Definitions.h"
//
// Addresses that we use!
//
#define EEPROM_ADDR_ACCEL_PITCH 0 // int - 2 bytes
#define EEPROM_ADDR_ACCEL_ROLL 2 // int - 2 bytes
#define EEPROM_ADDR_ACCEL_YAW 4 // int - 2 bytes
byte eeprom_read(int);
float eeprom_read_float(int);
int eeprom_read_int(int);
void eeprom_write(int, byte);
void eeprom_write(int, float);
void eeprom_write(int, int);
void eeprom_write_all();
void eeprom_read_all();
#endif