flash write in stm32H743iit6
hi there,I have a stm32H743iit6 and I wish to write a uint32_t array in it flash. I use sector 6 to 7 of Bank1 to write my array to. first I fill my array with number of 0 to 69 like so for (int i = 0; i < 70; i++)//10 { flash_buffer_W[i]=i; } a...