| 
 void LED_Init(void) 
{ 
  
 GPIO_InitTypeDef  GPIO_InitStructure; 
 	 
 RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB|RCC_APB2Periph_GPIOE, ENABLE);	 //使能PB,PE端口时钟 
	 
 GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5; 				 //LED0-->  B.5 端口配置  
 GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; 		 //推挽输出 
 GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;		 //IO口速度为50MHz 
 GPIO_Init(GPIOB, &GPIO_InitStructure);					 //根据设定参数初始化GPIOB.5 
 GPIO_SetBits(GPIOB,GPIO_Pin_5);						 //PB.5 输出高 
 
 
 GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5;	    		 //LED1--> E.5 端口配置, 推挽输出 
 GPIO_Init(GPIOE, &GPIO_InitStructure);	  				 //推挽输出 ,IO口速度为50MHz 
 GPIO_SetBits(GPIOE,GPIO_Pin_5); 						 //PE.5 输出高  
 
} 
这条语句是不是重复了   
 GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5;	    		 //LED1--> E.5 端口配置, 推挽输出 
可不可以屏蔽掉或删除
  |