RCC的全称是Reset and Clock Control 复位和时钟操控
复位就不用讲了,和实践编程的联络不是很大。
时钟是必需要了解的,否则程序就不能依照规划的来运转。
例如:
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB, &GPIO_InitStructure);
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB,ENABLE);//
以上的装备便是无效的。
正确的装备是下面的装备:先敞开时钟,然后装备寄存器,这样装备才干有用。
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB,ENABLE);//
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB, &GPIO_InitStructure);
这种关于一切的外设都有用。