572cf0ec95
* Get UBL Mesh Generation, Mesh Save & Mesh Load working with 32-Bit platforms * clean up read_data() and write_data() for non-LPC1768 HAL's * Get read_data() and write_data() return codes consistent All HAL's read_data() and write_data() return false if they succeed. * Get read_data() and write_data() return codes to be consistent Make read_data() and write_data() return true if an error happens. * Say UBL is now checked out on machine types in default Configuration.h file.
19 lines
402 B
C++
19 lines
402 B
C++
#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);
|
|
bool read_data(int &pos, uint8_t* value, uint16_t size, uint16_t *crc);
|
|
|
|
} // PersistentStore
|
|
} // HAL
|
|
|
|
#endif // _PERSISTENT_STORE_H_
|