This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @brief Configure the MPU attributes as Write Through for External SDRAM. | |
* @note The Base Address is 0xD0000000 . | |
* The Configured Region Size is 32MB because same as SDRAM size. | |
* @param None | |
* @retval None | |
*/ | |
void MPU_Config(void) | |
{ | |
MPU_Region_InitTypeDef MPU_InitStruct; |
OlderNewer