本文主要是介绍STM32F1 - 源码解析SystemInit(),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
SystemInit
- 1> SystemInit( )调用位置
- 2> SystemInit ()函数
- 2> SystemInit ()函数
1> SystemInit( )调用位置
startup_stm32f10x_hd.s文件中:
; Reset handler
Reset_Handler PROCEXPORT Reset_Handler [WEAK]IMPORT __mainIMPORT SystemInit LDR R0, =SystemInitBLX R0 LDR R0, =__mainBX R0ENDP
复位中,在调用__main()函数时,
先调用了SystemInit(), 他干了点啥活呢?
2> SystemInit ()函数
文件system_stm32f10x.h:/*** @brief Setup the microcontroller system* Initialize the Embedded Flash Interface, the PLL and update the * SystemCoreClock variable.* @note This function should be used only after reset.* @param None* @retval None*/
void SystemInit (void)
{/* Reset the RCC clock configuration to the default reset state(for debug purpose) *//* Set HSION bit */ RCC->CR |= (uint32_t)0x00000001;
开启内部8MHz内部振荡器/* Reset SW, HPRE, PPRE1, PPRE2, ADCPRE and MCO bits */RCC->CFGR &= (uint32_t)0xF8FF0000; // 1111 1000 1111 1111 0000 0000 0000 0000
时钟配置寄存器CFGR全为0, 则系统时钟源选择高速内部时钟HSI/* Reset HSEON, CSSON and PLLON bits */RCC->CR &= (uint32_t)0xFEF6FFFF; // 1111 1110 1111 0110 1111 1111 1111 1111
关闭外部高速时钟HSE,时钟监测器关闭,PLL关闭/* Reset HSEBYP bit */RCC->CR &= (uint32_t)0xFFFBFFFF; // 1011 1111 1111 1111 1111
外部4-16MHz振荡器没有旁路, 分析到,发现,写库的人不爱用移位运算,这点随我/* Reset PLLSRC, PLLXTPRE, PLLMUL and USBPRE/OTGFSPRE bits */// 1111 1111 1000 0000 1111 1111 1111 1111RCC->CFGR &= (uint32_t)0xFF80FFFF;
HSI振荡器时钟经过2分频后,作为PLL输入时钟;
PLL 2倍频输出, 那就是8MHz ÷ 2 *2 还是8MHz/* Disable all interrupts and clear pending bits */RCC->CIR = 0x009F0000; // 0000 0000 1001 1111 0000 0000 0000 0000
配置时钟中断 寄存器/* Configure the System clock frequency, HCLK, PCLK2 and PCLK1 prescalers *//* Configure the Flash Latency cycles and enable prefetch buffer */SetSysClock();/* Vector Table Relocation in Internal FLASH. */SCB->VTOR = FLASH_BASE | VECT_TAB_OFFSET; 这句话,非常重要,把异常向量表映射到Flash起始地址0x0800 0000}
RCC->CFGR &= (uint32_t)0xF8FF0000;
时钟配置寄存器CFGR,全为0, 重点关注SW,HSI作为系统时钟;
方法:看程序,对着参考手册, 看程序配置了哪些寄存器;
总结:
配置内部高速时钟HSI为时钟源,
调用 SetSysClock();
中断向量表放到Flash起始地址0x0800 0000;
2> SystemInit ()函数
/*** @brief Configures the System clock frequency, HCLK, PCLK2 and PCLK1 prescalers.* @param None* @retval None*/
static void SetSysClock(void)
{
#ifdef SYSCLK_FREQ_HSE#elif defined SYSCLK_FREQ_72MHzSetSysClockTo72();
#endif}
这篇关于STM32F1 - 源码解析SystemInit()的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!