1:开启需要打开的IO端口的时钟
RCC_APB2PeriphClockCmd();
2:初始化需要配置的GPIO端口
GPIO_InitTypeDef GPIO_InitStruct; //定义结构体
GPIO_InitStruct.GPIO_Pin = KEY0_PIN; //结构体成员配置
GPIO_InitStruct.GPIO_Mode = GPIO_Mode_IPU;
GPIO_InitStruct.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(&GPIO_InitStruct); //初始化函数
|