app_cfg.h
上传用户:dongxin
上传日期:2022-06-22
资源大小:370k
文件大小:0k
源码类别:

uCOS

开发平台:

Others

  1. #if OS_APP_HOOKS_EN > 0 
  2. void  APP_TaskCreateHook(OS_TCB *ptcb)
  3. {
  4. (void)ptcb;
  5. }
  6. void APP_TaskDelHook(OS_TCB *ptcb)
  7. {
  8. (void)ptcb;
  9. }
  10. void APP_TaskIdelHook(void)
  11. {
  12. }
  13. void APP_TaskStatHook(void)
  14. {
  15. }
  16. void APP_TaskSwHook(void)
  17. {
  18. }
  19. void APP_TCBInitHook(OS_TCB *ptcb)
  20. {
  21. (void)ptcb;
  22. }
  23. void APP_TimeTickHook(void)
  24. {
  25. }
  26. #endif