void LED_Sys_Init(void)
{
GPIO_InitType GPIO_InitStructure;
//RCC_APB2PeriphClockCmd(RCC_APB2PERIPH_AFIO, ENABLE); //¿ªÆôAFIO¸´ÓÃʱÖÓ
/*Enable the LED Clock*/
RCC_APB2PeriphClockCmd(RCC_APB2PERIPH_GPIOA, ENABLE);
/*Configure the LED pin as ouput push-pull*/
GPIO_StructInit(&GPIO_InitStructure);
GPIO_InitStructure.GPIO_Pins = GPIO_Pins_8;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT_PP;
GPIO_InitStructure.GPIO_MaxSpeed = GPIO_MaxSpeed_10MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
GPIO_ResetBits(GPIOA,GPIO_Pins_8);
}
|