1
0
forked from Git_test/Git_TEST
Files
Git_TEST_rocky/不同颜色LED/APP/Run_Led.c
BD7IWD-CMP\bd7iw 22a30f58c9 验证绿灯闪烁
2025-09-10 12:02:51 +08:00

18 lines
284 B
C

#include "stm32f10x.h" // Device header
#include "Delay.h"
#include "Led_Init.h"
#define Delay_Time 500
void Run_Led()
{
Led_Init();
while(1)
{
GPIO_SetBits(GPIOA,GRE_Led);
Delay_ms(Delay_Time);
GPIO_ResetBits(GPIOA,GRE_Led);
Delay_ms(Delay_Time);
}
}