关于STM32GPIO口配置命令

以下代码摘自原子的stm32开发指南

//初始化 PB5 和 PE5 为输出口.并使能这两个口的时钟     
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;                                      //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);        //设置 GPIOA.3 输出 1,等同 PAout(3)=1;
GPIO_ResetBits (GPIOB, GPIO_Pin_5);       //设置 GPIOB.5 输出 0,等同 PBout(5)=0;


你可能感兴趣的:(编程语言)