SystemConfig.h
上传用户:tkwrx3909
上传日期:2015-10-06
资源大小:3310k
文件大小:1k
源码类别:

uCOS

开发平台:

Visual C++

  1. #ifndef SYSTEM_CONFIG_H
  2. #define SYSTEM_CONFIG_H
  3. #define _CRT_SECURE_NO_WARNINGS
  4. #include <stdio.h>
  5. #include <assert.h>
  6. /*
  7. *********************************************************************************************************
  8. *                                            TASK PRIORITIES
  9. *********************************************************************************************************
  10. */
  11. #define  APP_TASK_START_PRIO          5
  12. /*
  13. *********************************************************************************************************
  14. *                                            TASK STACK SIZES
  15. *********************************************************************************************************
  16. */
  17. #define  APP_TASK_START_STK_SIZE    128
  18. #define OS_TASK_TMR_PRIO 65533
  19. #define OS_IDLE_PRIO OS_TASK_IDLE_PRIO
  20. #define OS_STAT_PRIO OS_TASK_STAT_PRIO
  21. #include <includes.h>
  22. #endif