Keil uVision5使用库函数实现,GPIOA11推挽输出50MHZ,初值为低电平。在主函数中进行实现点亮LED。(灯的一端接低)
时间: 2023-05-13 10:05:00 浏览: 512
1. 使用库函数点亮一个LED.zip
以下是使用库函数实现GPIOA11推挽输出50MHZ,初值为低电平点亮LED的代码:
```
#include "stm32f10x.h"
int main(void)
{
// 初始化GPIOA
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);
// 初始化LED
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOC, &GPIO_InitStructure);
// 点亮LED
GPIO_ResetBits(GPIOC, GPIO_Pin_13);
GPIO_SetBits(GPIOA, GPIO_Pin_11);
while (1)
{
// do nothing
}
}
```
注意,这段代码是使用库函数实现的,可以在Keil uVision5中直接编译运行。
阅读全文