Resolved! Flash Sector Erase - STM32F207
Hello, I currently have this code setup to erase a specific sector of the STM32F207 internal flash:static void eraseSector(uint32_t sector) { FLASH_EraseInitTypeDef eraseInitStruct = { 0 }; HAL_StatusTypeDef status = HAL_OK; if( HAL_FLA...