based on previous info: for stm32f7 this seams like it would do the trick. static void flush_caches(void){SCB_EnableICache(); //Invalidate and then enable the instruction cache SCB_EnableDCache(); //Invalidate and then enable the data cache}
For stm32f7:Information i have to go by on is: HAL_StatusTypeDef HAL_Init (void )This function is used to initialize the HAL Library; it must be the first instruction to be executed in the main program (before to call any other HAL function), it perf...