stm32 点灯代码
下面是一个简单的示例代码,以点亮STM32开发板上的一个LED灯为例:
#include "stm32f4xx.h"
void delay(uint32_t time) {
while (time--);
}
int main(void) {
// 使能GPIOG的时钟
RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOG, ENABLE);
GPIO_InitTypeDef GPIO_InitStructure;
// 配置GPIOG的第13号引脚为输出模式
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_100MHz;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
GPIO_Init(GPIOG, &GPIO_InitStructure);
while (1) {
// 点亮LED灯
GPIO_SetBits(GPIOG, GPIO_Pin_13);
delay(500000);
// 熄灭LED灯
GPIO_ResetBits(GPIOG, GPIO_Pin_13);
delay(500000);
}
}
这个代码使用了STM32库函数来配置GPIOG的第13号引脚为输出模式,并在主循环中通过GPIO_SetBits和GPIO_ResetBits函数来点亮和熄灭LED灯。delay函数用于延时一段时间,以便能够看到LED灯的闪烁效果
原文地址: http://www.cveoy.top/t/topic/iWew 著作权归作者所有。请勿转载和采集!