2017-06-18 01:36:10 +02:00
|
|
|
#ifndef _PERSISTENT_STORE_H_
|
|
|
|
#define _PERSISTENT_STORE_H_
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
namespace HAL {
|
|
|
|
namespace PersistentStore {
|
|
|
|
|
|
|
|
bool access_start();
|
|
|
|
bool access_finish();
|
|
|
|
bool write_data(int &pos, const uint8_t *value, uint16_t size, uint16_t *crc);
|
2018-01-05 02:51:18 +01:00
|
|
|
bool read_data(int &pos, uint8_t* value, uint16_t size, uint16_t *crc, const bool writing=true);
|
2017-06-18 01:36:10 +02:00
|
|
|
|
2017-09-06 13:28:32 +02:00
|
|
|
} // PersistentStore
|
|
|
|
} // HAL
|
2017-06-18 01:36:10 +02:00
|
|
|
|
2017-09-06 13:28:32 +02:00
|
|
|
#endif // _PERSISTENT_STORE_H_
|