How to write data to flash on an STM32F413ZH
HelloI'm trying to read and write data to the flash on a STM32F413ZH using Keil MDK-ARM. I've been using the following code:uint32_t Flash_Address1 = 0x08140066; uint32_t Flash_Address2 = 0x08140067; uint8_t Data[4] = {0x66, 0x77, 0x88, 0x99 }; v...