为什么要配置端口?
因为GPIO中端口的作用很多,没有固定的一种模式,因此需要配置.
配置为输出模式 , 驱动led , 配置思路是什么样的?
- 使能端口时钟;
- 选定需要配置的管脚;
- 配置端口的模式;
- 初始化端口;
代码如下:
#include "led.h"
#include "sys.h"
void LED_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;//结构体变量定义
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOF, ENABLE);//使能GPIOF时钟
GPIO_InitStructure.GPIO_Pin = (GPIO_Pin_9|GPIO_Pin_10); //LED0=PF9,LED1=PF10
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;//输出模式
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;//推挽输出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;//50M
GPIO_Init(GPIOF, &GPIO_InitStructure);//初始化GPIOF
}