#define RCC ((RCC_TypeDef *) RCC_BASE):我们先定义一个结构体指针RCC_BASE,我们知道指针就是地址空间,我们确定了一个结构体的首地址,那么这个结构体的大小随之确定了,这个结构体的成员将会按首地址依次排列,并逐个占用地址空间.访问一个结构体指针成员我们用RCC->CR.
RCC->CR寄存器:
void SystemInit (void)
{
//启动内部高速8MHz振荡器
RCC->CR |= (uint32_t)0x00000001;
/* Reset SW, HPRE, PPRE1, PPRE2, ADCPRE and MCO bits */
#ifndef STM32F10X_CL
RCC->CFGR &= (uint32_t)0xF8FF0000;
#else
RCC->CFGR &= (uint32_t)0xF0FF0000;//用来复位上诉SW.HPRE,PPRE等,其实就是先切换到HIS作为系统时钟,AHB,APB1,APB2不分频等相关操作.
#endif /* STM32F10X_CL */
/* Reset HSEON, CSSON and PLLON bits */
RCC->CR &= (uint32_t)0xFEF6FFFF;
/* Reset HSEBYP bit */
RCC->CR &= (uint32_t)0xFFFBFFFF;
/* Reset PLLSRC, PLLXTPRE, PLLMUL and USBPRE/OTGFSPRE bits */
RCC->CFGR &= (uint32_t)0xFF80FFFF;
#ifdef STM32F10X_CL
/* Reset PLL2ON and PLL3ON bits */
RCC->CR &= (uint32_t)0xEBFFFFFF;
/* Disable all interrupts and clear pending bits */
RCC->CIR = 0x00FF0000;
/* Reset CFGR2 register */
RCC->CFGR2 = 0x00000000;
#elif defined (STM32F10X_LD_VL) || defined (STM32F10X_MD_VL) || (defined STM32F10X_HD_VL)
/* Disable all interrupts and clear pending bits */
RCC->CIR = 0x009F0000;
/* Reset CFGR2 register */
RCC->CFGR2 = 0x00000000;
#else
/* Disable all interrupts and clear pending bits */
RCC->CIR = 0x009F0000;
#endif /* STM32F10X_CL */
#if defined (STM32F10X_HD) || (defined STM32F10X_XL) || (defined STM32F10X_HD_VL)
#ifdef DATA_IN_ExtSRAM
SystemInit_ExtMemCtl();
#endif /* DATA_IN_ExtSRAM */
#endif
/* Configure the System clock frequency, HCLK, PCLK2 and PCLK1 prescalers */
/* Configure the Flash Latency cycles and enable prefetch buffer */
SetSysClock();
#ifdef VECT_TAB_SRAM
SCB->VTOR = SRAM_BASE | VECT_TAB_OFFSET; /* Vector Table Relocation in Internal SRAM. */
#else
SCB->VTOR = FLASH_BASE | VECT_TAB_OFFSET; /* Vector Table Relocation in Internal FLASH. */
#endif
}
Void systemint()这个函数先将内部高速时钟设位系统时钟,然后将一些预分频系数初始换之类的,当执行到SetSysClock()这个函数时,会指引单片机打开外部时钟作为系统时钟,而真正设置的函数是static void SetSysClockTo72(void),然后打开外部高速时钟作为系统时钟,重复开始的一些设置,将预分配系数初始化之类的.这其中主要配置的就是CR和CFGR这两个寄存器,CR寄存器主要和系统时钟的选择有关,而CFRGR主要配置的是预分频系数.