11 #define MEMORY_SIZE (FLASH_DATA_SIZE) 12 #define MEMORY_INIT_VALUE 0x00 13 #define MEMORY_SIZE_PER_SETTING 8192 18 void MemoryInit(
void);
19 void MemoryReadBlock(
void* Buffer, uint16_t Address, uint16_t ByteCount);
20 void MemoryWriteBlock(
const void* Buffer, uint16_t Address, uint16_t ByteCount);
21 void MemoryClear(
void);
24 void MemoryRecall(
void);
25 void MemoryStore(
void);
28 bool MemoryUploadBlock(
void* Buffer, uint32_t BlockAddress, uint16_t ByteCount);
29 bool MemoryDownloadBlock(
void* Buffer, uint32_t BlockAddress, uint16_t ByteCount);