go1/User/task/led_task.c

19 lines
292 B
C
Raw Normal View History

2025-03-02 23:06:09 +08:00
#include "led_task.h"
#include "cmsis_os.h"
#include "FreeRTOS.h"
#include "main.h"
#include "led.h"
void Task_Led(void *argument) {
(void)argument; /* 未使用argument消除警告 */
for (;;) {
// LED_red();
// LED_bule();
// LED_green();
osDelay(500);
}
}