Files
2026-04-09 10:14:20 +08:00

38 lines
425 B
C
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* @auther whlphlg
* @brief task.c用来定义要运行的任务函数该文件可随意更改自由度较大
* @changedate 2020.09.13
*/
//用户include
#include "at32a423.h"
#include "bsp_led.h"
#include "scan.h"
//下面的是作者写的必须include
#include "task.h"
#include "sys.h"
void task1()
{
}
void task2()
{
System_TaskOut(TASK1,4000);
}
void task3()
{
bsp_led_toggle(LED2);
}
void task4()
{
}
void task5()
{
}