comparison Small_CPU/Src/system_stm32f4xx.c @ 160:e3ca52b8e7fa

Merge with FlipDisplay
author heinrichsweikamp
date Thu, 07 Mar 2019 15:06:43 +0100
parents f35e53ef04e0
children
comparison
equal deleted inserted replaced
80:cc2bb7bb8456 160:e3ca52b8e7fa
121 3) each time HAL_RCC_ClockConfig() is called to configure the system clock frequency 121 3) each time HAL_RCC_ClockConfig() is called to configure the system clock frequency
122 Note: If you use this function to configure the system clock; then there 122 Note: If you use this function to configure the system clock; then there
123 is no need to call the 2 first functions listed above, since SystemCoreClock 123 is no need to call the 2 first functions listed above, since SystemCoreClock
124 variable is updated automatically. 124 variable is updated automatically.
125 */ 125 */
126 uint32_t SystemCoreClock = 16000000; 126 uint32_t SystemCoreClock = 16000000;
127 __I uint8_t AHBPrescTable[16] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 7, 8, 9}; 127 const uint8_t AHBPrescTable[16] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 6, 7, 8, 9};
128 128 const uint8_t APBPrescTable[8] = {0, 0, 0, 0, 1, 2, 3, 4};
129 /** 129 /**
130 * @} 130 * @}
131 */ 131 */
132 132
133 /** @addtogroup STM32F4xx_System_Private_FunctionPrototypes 133 /** @addtogroup STM32F4xx_System_Private_FunctionPrototypes