User Activity

I've got the following structure to write to memory:```#define FLASH_CONFIG_START_ADDR ((uint32_t) 0x080E0000)#define FLASH_CONFIG_END_ADDR ((uint32_t) 0x080E0040)union NVRAM { Config_t config; uint8_t data[512];} DevNVRAM;```I've used this code for ...