04.在led.c文件中编写代码如下: #include "led.h"
//初始化 PB6和 PB7 为输出口.并使能这两个口的时钟 //LED IO 初始化
void LED_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE); //使能 PB端口时钟
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6; //LED1-->PB.6 端口配置 GPIO_InitStructure.GPIO_Pin = GPIO_Pin_7; //LED2-->PB.7 端口配置
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP; //推挽输出
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz; //IO 口速度为 50MHz
GPIO_Init(GPIOB, &GPIO_InitStructure); //初始化 GPIOB
}
|