Resolved! How do I create a non cacheable memory area that requires 512Kb + 256Kb
Using STM32 HAL and a STM32H7 (I know some dissuade the usage of this). I have created 2 MPU Regions of non cacheable memory .void MPU_Config(void) { MPU_Region_InitTypeDef MPU_InitStruct = { 0 }; /* Disables the MPU */ HAL_MPU_Disable(); /** I...