Working settings save & restore

This commit is contained in:
Ben V. Brown
2022-04-22 19:01:57 +10:00
parent 49be70c667
commit 289f770f95

View File

@@ -10,27 +10,14 @@
#include "hal_flash.h" #include "hal_flash.h"
#include "string.h" #include "string.h"
#define FLASH_PAGE_SIZE ((uint16_t)1024) #define FLASH_PAGE_SIZE (1024)
#define SETTINGS_START_PAGE (1023 * FLASH_PAGE_SIZE) // Hal auto offsets base addr
#define SETTINGS_START_PAGE (1023 * 1024) // Hal auto offsets base addr
#define SETTINGS_READ_PAGE 0x23000000 + SETTINGS_START_PAGE
uint8_t flash_save_buffer(const uint8_t *buffer, const uint16_t length) { uint8_t flash_save_buffer(const uint8_t *buffer, const uint16_t length) {
flash_erase(SETTINGS_START_PAGE, length); BL_Err_Type err = flash_erase(SETTINGS_START_PAGE, FLASH_PAGE_SIZE);
err = flash_write(SETTINGS_START_PAGE, buffer, length);
flash_write(SETTINGS_START_PAGE, buffer, sizeof(length)); return err != SUCCESS;
return 1;
} }
void flash_read_buffer(uint8_t *buffer, const uint16_t length) { void flash_read_buffer(uint8_t *buffer, const uint16_t length) { flash_read(SETTINGS_START_PAGE, buffer, length); }
/* read 0x00010000 flash data */
flash_read(SETTINGS_START_PAGE, buffer, sizeof(length));
return;
// #TODO
uint32_t *b = (uint32_t *)buffer;
uint32_t *b2 = (uint32_t *)SETTINGS_START_PAGE;
for (int i = 0; i < length / 4; i++) {
b[i] = b2[i];
}
}