stm32f103c8t6使用寄存器点灯PB5
时间: 2023-04-03 22:02:51 浏览: 130
stm32f103c8t6点灯
可以使用以下代码点亮PB5:
```
#include "stm32f10x.h"
int main(void)
{
// 使能GPIOB时钟
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB, ENABLE);
// 配置PB5为推挽输出
GPIO_InitTypeDef GPIO_InitStructure;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_5;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_Init(GPIOB, &GPIO_InitStructure);
// 点亮PB5
GPIO_SetBits(GPIOB, GPIO_Pin_5);
while (1);
return 0;
}
```
阅读全文