以下代碼摘自原子的stm32開發(fā)指南
//初始化PB5和PE5為輸出口.并使能這兩個口的時鐘
voidLED_Init(void)
{
GPIO_InitTypeDefGPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB|RCC_APB2Periph_GPIOE,ENABLE);//使能PB,PE端口時鐘
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_5;//PB.5推挽輸出
GPIO_InitStructure.GPIO_Mode=GPIO_Mode_Out_PP;//推挽輸出
GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
GPIO_Init(GPIOB,&GPIO_InitStructure);
GPIO_SetBits(GPIOB,GPIO_Pin_5);//PB.5輸出高
GPIO_InitStructure.GPIO_Pin=GPIO_Pin_5;//LED1-->PE.5推挽輸出
GPIO_Init(GPIOE,&GPIO_InitStructure);
GPIO_SetBits(GPIOE,GPIO_Pin_5);//PE.5輸出高
}
另外,有
GPIO_SetBits(GPIOA,GPIO_Pin_3);//設(shè)置GPIOA.3輸出1,等同PAout(3)=1;
GPIO_ResetBits(GPIOB,GPIO_Pin_5);//設(shè)置GPIOB.5輸出0,等同PBout(5)=0;