OS_CPU.H
上传用户:zbk8730
上传日期:2017-08-10
资源大小:12168k
文件大小:5k
源码类别:

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. * File         : OS_CPU.H
  10. *********************************************************************************************************
  11. */
  12. #ifndef OS_CPU_H
  13. #define OS_CPU_H
  14. /*
  15. *********************************************************************************************************
  16. *                                              DATA TYPES
  17. *                                         (Compiler Specific)
  18. *********************************************************************************************************
  19. */
  20. typedef unsigned char  BOOLEAN;                 /* 布尔变量                                 */
  21. typedef unsigned char  INT8U;                   /* 无符号8位整型变量                        */
  22. typedef signed   char  INT8S;                   /* 有符号8位整型变量                        */
  23. typedef unsigned short INT16U;                  /* 无符号16位整型变量                       */
  24. typedef signed   short INT16S;                  /* 有符号16位整型变量                       */
  25. typedef unsigned int   INT32U;                  /* 无符号32位整型变量                       */
  26. typedef signed   int   INT32S;                  /* 有符号32位整型变量                       */
  27. typedef float          FP32;                    /* 单精度浮点数(32位长度)                 */
  28. typedef double         FP64;                    /* 双精度浮点数(64位长度)                 */
  29. typedef INT32U         OS_STK;                  /* 堆栈是32位宽度                           */
  30. /* 以下是兼容UC/OS V1.XX的数据类型,在uC/OS-II没有使用  */
  31. #define BYTE           INT8S
  32. #define UBYTE          INT8U
  33. #define WORD           INT16S
  34. #define UWORD          INT16U
  35. #define LONG           INT32S
  36. #define ULONG          INT32U
  37.                               
  38. typedef INT32U    OS_CPU_SR;                /* Define size of CPU status register (PSR = 32 bits) */
  39. /* 
  40. *********************************************************************************************************
  41. *                                              ARM
  42. *
  43. * Method #1:  NOT IMPLEMENTED
  44. *             Disable/Enable interrupts using simple instructions.  After critical section, interrupts
  45. *             will be enabled even if they were disabled before entering the critical section.
  46. *             
  47. * Method #2:  NOT IMPLEMENTED
  48. *             Disable/Enable interrupts by preserving the state of interrupts.  In other words, if 
  49. *             interrupts were disabled before entering the critical section, they will be disabled when
  50. *             leaving the critical section.
  51. *             NOT IMPLEMENTED
  52. *
  53. * Method #3:  Disable/Enable interrupts by preserving the state of interrupts.  Generally speaking you
  54. *             would store the state of the interrupt disable flag in the local variable 'cpu_sr' and then
  55. *             disable interrupts.  'cpu_sr' is allocated in all of uC/OS-II's functions that need to 
  56. *             disable interrupts.  You would restore the interrupt disable state by copying back 'cpu_sr'
  57. *             into the CPU's status register.  This is the prefered method to disable interrupts.
  58. *********************************************************************************************************
  59. */
  60. #define  OS_CRITICAL_METHOD    3
  61. #if      OS_CRITICAL_METHOD == 3
  62. #define  OS_ENTER_CRITICAL()  (cpu_sr = OSCPUSaveSR())  /* Disable interrupts                        */
  63. #define  OS_EXIT_CRITICAL()   (OSCPURestoreSR(cpu_sr))  /* Restore  interrupts                       */
  64. #endif
  65. /*
  66. *********************************************************************************************************
  67. *                                         ARM Miscellaneous
  68. *********************************************************************************************************
  69. */
  70. #define  OS_STK_GROWTH        1                       /* Stack grows from HIGH to LOW memory on ARM    */
  71. #define  OS_TASK_SW()         OSCtxSw()
  72. /*
  73. *********************************************************************************************************
  74. *                                            GLOBAL VARIABLES
  75. *********************************************************************************************************
  76. */
  77. /*
  78. *********************************************************************************************************
  79. *                                              PROTOTYPES
  80. *********************************************************************************************************
  81. */
  82. #if OS_CRITICAL_METHOD == 3                           /* Allocate storage for CPU status register      */
  83. OS_CPU_SR  OSCPUSaveSR(void);
  84. void       OSCPURestoreSR(OS_CPU_SR cpu_sr);
  85. #endif
  86. #endif