os_cfg.h
上传用户:jyxpgd88
上传日期:2013-04-13
资源大小:90k
文件大小:8k
源码类别:

uCOS

开发平台:

C/C++

  1. /*
  2. *********************************************************************************************************
  3. *                                                uC/OS-II
  4. *                                          The Real-Time Kernel
  5. *
  6. *                           (c) Copyright 1992-2003, Jean J. Labrosse, Weston, FL
  7. *                                           All Rights Reserved
  8. *
  9. *                                  uC/OS-II Configuration File for V2.7x
  10. *
  11. * File : OS_CFG.H
  12. * By   : Jean J. Labrosse
  13. *********************************************************************************************************
  14. */
  15. #ifndef OS_CFG_H
  16. #define OS_CFG_H
  17.                                        /* ---------------------- MISCELLANEOUS ----------------------- */
  18. #define OS_ARG_CHK_EN             1    /* Enable (1) or Disable (0) argument checking                  */
  19. #define OS_CPU_HOOKS_EN           1    /* uC/OS-II hooks are found in the processor port files         */
  20. #define OS_DEBUG_EN               1    /* Enable(1) debug variables                                    */
  21. #define OS_EVENT_NAME_SIZE       32    /* Determine the size of the name of a Sem, Mutex, Mbox or Q    */
  22. #define OS_LOWEST_PRIO           12    /* Defines the lowest priority that can be assigned ...         */
  23.                                        /* ... MUST NEVER be higher than 63!                            */
  24. #define OS_MAX_EVENTS             2    /* Max. number of event control blocks in your application      */
  25. #define OS_MAX_FLAGS              5    /* Max. number of Event Flag Groups    in your application      */
  26. #define OS_MAX_MEM_PART           5    /* Max. number of memory partitions                             */
  27. #define OS_MAX_QS                 4    /* Max. number of queue control blocks in your application      */
  28. #define OS_MAX_TASKS             11    /* Max. number of tasks in your application, MUST be >= 2       */
  29. #define OS_SCHED_LOCK_EN          0    /*     Include code for OSSchedLock() and OSSchedUnlock()       */
  30. #define OS_TASK_IDLE_STK_SIZE    64    /* Idle task stack size (# of OS_STK wide entries)              */
  31. #define OS_TASK_STAT_EN           1    /* Enable (1) or Disable(0) the statistics task                 */
  32. #define OS_TASK_STAT_STK_SIZE    64    /* Statistics task stack size (# of OS_STK wide entries)        */
  33. #define OS_TASK_STAT_STK_CHK_EN   1    /* Check task stacks from statistic task                        */
  34. #define OS_TICK_STEP_EN           1    /* Enable tick stepping feature for uC/OS-View                  */
  35. #define OS_TICKS_PER_SEC        100    /* Set the number of ticks in one second                        */
  36.                                        /* ----------------------- EVENT FLAGS ------------------------ */
  37. #define OS_FLAG_EN                0    /* Enable (1) or Disable (0) code generation for EVENT FLAGS    */
  38. #define OS_FLAG_WAIT_CLR_EN       0    /* Include code for Wait on Clear EVENT FLAGS                   */
  39. #define OS_FLAG_ACCEPT_EN         0    /*     Include code for OSFlagAccept()                          */
  40. #define OS_FLAG_DEL_EN            0    /*     Include code for OSFlagDel()                             */
  41. #define OS_FLAG_NAME_SIZE        32    /*     Determine the size of the name of an event flag group    */
  42. #define OS_FLAG_QUERY_EN          0    /*     Include code for OSFlagQuery()                           */
  43.                                        /* -------------------- MESSAGE MAILBOXES --------------------- */
  44. #define OS_MBOX_EN                0    /* Enable (1) or Disable (0) code generation for MAILBOXES      */
  45. #define OS_MBOX_ACCEPT_EN         0    /*     Include code for OSMboxAccept()                          */
  46. #define OS_MBOX_DEL_EN            0    /*     Include code for OSMboxDel()                             */
  47. #define OS_MBOX_POST_EN           0    /*     Include code for OSMboxPost()                            */
  48. #define OS_MBOX_POST_OPT_EN       0    /*     Include code for OSMboxPostOpt()                         */
  49. #define OS_MBOX_QUERY_EN          0    /*     Include code for OSMboxQuery()                           */
  50.                                        /* --------------------- MEMORY MANAGEMENT -------------------- */
  51. #define OS_MEM_EN                 0    /* Enable (1) or Disable (0) code generation for MEMORY MANAGER */
  52. #define OS_MEM_QUERY_EN           0    /*     Include code for OSMemQuery()                            */
  53. #define OS_MEM_NAME_SIZE         32    /*     Determine the size of a memory partition name            */
  54.                                        /* ---------------- MUTUAL EXCLUSION SEMAPHORES --------------- */
  55. #define OS_MUTEX_EN               0    /* Enable (1) or Disable (0) code generation for MUTEX          */
  56. #define OS_MUTEX_ACCEPT_EN        0    /*     Include code for OSMutexAccept()                         */
  57. #define OS_MUTEX_DEL_EN           0    /*     Include code for OSMutexDel()                            */
  58. #define OS_MUTEX_QUERY_EN         0    /*     Include code for OSMutexQuery()                          */
  59.                                        /* ---------------------- MESSAGE QUEUES ---------------------- */
  60. #define OS_Q_EN                   0    /* Enable (1) or Disable (0) code generation for QUEUES         */
  61. #define OS_Q_ACCEPT_EN            0    /*     Include code for OSQAccept()                             */
  62. #define OS_Q_DEL_EN               0    /*     Include code for OSQDel()                                */
  63. #define OS_Q_FLUSH_EN             0    /*     Include code for OSQFlush()                              */
  64. #define OS_Q_POST_EN              0    /*     Include code for OSQPost()                               */
  65. #define OS_Q_POST_FRONT_EN        0    /*     Include code for OSQPostFront()                          */
  66. #define OS_Q_POST_OPT_EN          0    /*     Include code for OSQPostOpt()                            */
  67. #define OS_Q_QUERY_EN             0    /*     Include code for OSQQuery()                              */
  68.                                        /* ------------------------ SEMAPHORES ------------------------ */
  69. #define OS_SEM_EN                 1    /* Enable (1) or Disable (0) code generation for SEMAPHORES     */
  70. #define OS_SEM_ACCEPT_EN          0    /*    Include code for OSSemAccept()                            */
  71. #define OS_SEM_DEL_EN             0    /*    Include code for OSSemDel()                               */
  72. #define OS_SEM_QUERY_EN           0    /*    Include code for OSSemQuery()                             */
  73.                                        /* --------------------- TASK MANAGEMENT ---------------------- */
  74. #define OS_TASK_CHANGE_PRIO_EN    0    /*     Include code for OSTaskChangePrio()                      */
  75. #define OS_TASK_CREATE_EN         1    /*     Include code for OSTaskCreate()                          */
  76. #define OS_TASK_CREATE_EXT_EN     0    /*     Include code for OSTaskCreateExt()                       */
  77. #define OS_TASK_DEL_EN            0    /*     Include code for OSTaskDel()                             */
  78. #define OS_TASK_NAME_SIZE        32    /*     Determine the size of a task name                        */
  79. #define OS_TASK_PROFILE_EN        0    /*     Include variables in OS_TCB for profiling                */
  80. #define OS_TASK_QUERY_EN          0    /*     Include code for OSTaskQuery()                           */
  81. #define OS_TASK_SUSPEND_EN        0    /*     Include code for OSTaskSuspend() and OSTaskResume()      */
  82. #define OS_TASK_SW_HOOK_EN        1    /*     Include code for OSTaskSwHook()                          */
  83.                                        /* --------------------- TIME MANAGEMENT ---------------------- */
  84. #define OS_TIME_DLY_HMSM_EN       1    /*     Include code for OSTimeDlyHMSM()                         */
  85. #define OS_TIME_DLY_RESUME_EN     0    /*     Include code for OSTimeDlyResume()                       */
  86. #define OS_TIME_GET_SET_EN        0    /*     Include code for OSTimeGet() and OSTimeSet()             */
  87. #define OS_TIME_TICK_HOOK_EN      0    /*     Include code for OSTimeTickHook()                        */
  88. typedef INT8U             OS_FLAGS;   /* Date type for event flag bits (8, 16 or 32 bits)             */
  89. #endif