I'm using STM32F030K6T6TR and i'm trying to use the flash memory. It worked to erase the pages that i need but when i write i get a hard fault error
#define FLASH_USER_START_ADDR 0x0800FC00UL#define FLASH_USER_END_ADDR 0x08010000UL uint32_t Address = 0, PageError = 0; __IO uint32_t data32 = 0 , MemoryProgramStatus = 0; /*Variable used for Erase procedure*/ static FLASH_EraseInitTypeDef Era...