sys_task.h 387 B

123456789101112131415161718192021222324252627
  1. /**
  2. * @file sys_task.h
  3. * @author Xiao Lifan (xiaolf6@midea.com)
  4. * @brief 控制系统任务调度
  5. * @version 0.1
  6. * @date 2023-05-24
  7. *
  8. * @copyright Copyright (c) 2023
  9. *
  10. */
  11. #ifndef _SYS_TASK_H_
  12. #define _SYS_TASK_H_
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif // __cplusplus
  16. void SysTaskBg();
  17. void SysTask1Ms();
  18. void SysTask10Ms();
  19. #ifdef __cplusplus
  20. }
  21. #endif // __cplusplus
  22. #endif