AI文库-您身边的智能助手,如没有想要的内容请与本站万能的AI助手联系。

stm32闪烁灯交替闪烁

来自 福建省 的网友 时间: 热度:°C 加入收藏 我要投稿 点赞()
您好!您可以使用以下代码来实现STM32闪烁灯交替闪烁。这是一个简单的示例代码,演示了如何在STM32F系列微控制器上控制一个LED灯的闪烁。

```c
#include "stm32f10x.h"

void delay(uint32_t count)
{
for(;count!=0;count--);
}

int main(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
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);

while(1)
{
GPIO_SetBits(GPIOC, GPIO_Pin_13);
delay(1000000);
GPIO_ResetBits(GPIOC, GPIO_Pin_13);
delay(1000000);
}
}
```
221381
领取福利

微信扫码领取福利

微信扫码分享