-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathee.h
43 lines (32 loc) · 1.19 KB
/
ee.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
#ifndef __EEPROM_H
#define __EEPROM_H
/*
Author: Nima Askari
WebSite: http://www.github.com/NimaLTD
Instagram: http://instagram.com/github.NimaLTD
Youtube: https://www.youtube.com/channel/UCUhY7qY1klJm1d2kulr9ckw
Version: 2.0.1
(2.0.1)
Change function name to ee_commit().
Reversion History:
(2.0.0)
Rewrite again.
*/
#ifdef __cplusplus
extern "C" {
#endif
#include <stdbool.h>
#include "gpio.h"
//################################################################################################################
bool ee_init(void);
bool ee_format(bool keepRamData);
bool ee_read(uint32_t startVirtualAddress, uint32_t len, uint8_t* data);
bool ee_write(uint32_t startVirtualAddress, uint32_t len, uint8_t* data);
bool ee_writeToRam(uint32_t startVirtualAddress, uint32_t len, uint8_t* data); // only use when _EE_USE_RAM_BYTE is enabled
bool ee_commit(void); // only use when _EE_USE_RAM_BYTE is enabled
uint32_t ee_maxVirtualAddress(void);
//################################################################################################################
#ifdef __cplusplus
}
#endif
#endif