fix(增加更多测试): 增加其他接口测试

This commit is contained in:
chenyf 2025-01-16 08:38:16 +08:00
parent 9073edb7a8
commit 6a16cd95b2
4 changed files with 7 additions and 1 deletions

View File

@ -4,6 +4,7 @@
"stdio.h": "c", "stdio.h": "c",
"windows.h": "c", "windows.h": "c",
"cmath": "c", "cmath": "c",
"list.h": "c" "list.h": "c",
"stdlib.h": "c"
} }
} }

Binary file not shown.

Binary file not shown.

View File

@ -22,6 +22,11 @@ void hello_dog(){
printf("hello dog\n"); printf("hello dog\n");
} }
EXPORT_EASY_TIMER_HANDLE(hello_dog,TIMER_CONTINUE_TRIGGER, MS_TO_TICK(1000)); EXPORT_EASY_TIMER_HANDLE(hello_dog,TIMER_CONTINUE_TRIGGER, MS_TO_TICK(1000));
void hello_once(){
printf("hello once\n");
}
EXPORT_EASY_TIMER_HANDLE(hello_once,TIMER_SIGNAL_TRIGGER, MS_TO_TICK(1000));
/** /**
* @brief * @brief
* @return * @return