#include "stm32f10x.h"


void LED_Init(void)
{

  
  GPIO_InitTypeDef  GPIO_InitStructure;	 
  RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB,ENABLE);	    //ʹPB˿ʱ
  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5;			    //LED0-->PB.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 
  
}