Os_cfg200.h
上传用户:jinguanrq
上传日期:2022-06-04
资源大小:724k
文件大小:3k
源码类别:

uCOS

开发平台:

C/C++

  1. /*
  2. *********************************************************************************************************
  3. *                                                uC/OS-II
  4. *                                          The Real-Time Kernel
  5. *
  6. *                        (c) Copyright 1992-1998, Jean J. Labrosse, Plantation, FL
  7. *                                           All Rights Reserved
  8. *
  9. *                                 
  10. *
  11. * File : OS_CFG.H
  12. * By   : Jean J. Labrosse
  13. *
  14. * Configuration : 21/08/00  EL
  15. *********************************************************************************************************
  16. */
  17. /*
  18. *********************************************************************************************************
  19. *                                         uC/OS-II CONFIGURATION
  20. *********************************************************************************************************
  21. */
  22. #define OS_MAX_EVENTS            20    /* Max. number of event control blocks in your application ...  */
  23.                                        /* ... MUST be >= 2                                             */
  24. #define OS_MAX_MEM_PART          10    /* Max. number of memory partitions ...                         */
  25.                                        /* ... MUST be >= 2                                             */
  26. #define OS_MAX_QS                 5    /* Max. number of queue control blocks in your application ...  */
  27.                                        /* ... MUST be >= 2                                             */
  28. #define OS_MAX_TASKS             32    /* Max. number of tasks in your application ...                 */
  29.                                        /* ... MUST be >= 2                                             */
  30. #define OS_LOWEST_PRIO           63    /* Defines the lowest priority that can be assigned ...         */
  31.                                        /* ... MUST NEVER be higher than 63!                            */
  32. #define OS_TASK_IDLE_STK_SIZE   512    /* Idle task stack size (# of 16-bit wide entries)              */
  33. #define OS_TASK_STAT_EN           0    /* Enable (1) or Disable(0) the statistics task                 */
  34. #define OS_TASK_STAT_STK_SIZE   512    /* Statistics task stack size (# of 16-bit wide entries)        */
  35. #define OS_CPU_HOOKS_EN           1    /* uC/OS-II hooks are NOT found in the processor port files     */
  36. #define OS_MBOX_EN                1    /* Include code for MAILBOXES                                   */
  37. #define OS_MEM_EN                 0    /* Include code for MEMORY MANAGER (fixed sized memory blocks)  */
  38. #define OS_Q_EN                   1    /* Include code for QUEUES                                      */
  39. #define OS_SEM_EN                 1    /* Include code for SEMAPHORES                                  */
  40. #define OS_TASK_CHANGE_PRIO_EN    0    /* Include code for OSTaskChangePrio()                          */
  41. #define OS_TASK_CREATE_EN         1    /* Include code for OSTaskCreate()                              */
  42. #define OS_TASK_CREATE_EXT_EN     0    /* Include code for OSTaskCreateExt()                           */
  43. #define OS_TASK_DEL_EN            1    /* Include code for OSTaskDel()                                 */
  44. #define OS_TASK_SUSPEND_EN        0    /* Include code for OSTaskSuspend() and OSTaskResume()          */
  45. #define OS_TICKS_PER_SEC        200    /* Set the number of ticks in one second                        */