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

uCOS

开发平台:

Others

  1. /*
  2. *********************************************************************************************************
  3. *                                                uC/OS-II
  4. *                                          The Real-Time Kernel
  5. *                                             TIME MANAGEMENT
  6. *
  7. *                              (c) Copyright 1992-2007, Micrium, Weston, FL
  8. *                                           All Rights Reserved
  9. *
  10. * File    : OS_TIME.C
  11. * By      : Jean J. Labrosse
  12. * Version : V2.86
  13. *
  14. * LICENSING TERMS:
  15. * ---------------
  16. *   uC/OS-II is provided in source form for FREE evaluation, for educational use or for peaceful research.  
  17. * If you plan on using  uC/OS-II  in a commercial product you need to contact Micri祄 to properly license 
  18. * its use in your product. We provide ALL the source code for your convenience and to help you experience 
  19. * uC/OS-II.   The fact that the  source is provided does  NOT  mean that you can use it without  paying a 
  20. * licensing fee.
  21. *********************************************************************************************************
  22. */
  23. #ifndef  OS_MASTER_FILE
  24. #include <ucos_ii.h>
  25. #endif
  26. /*
  27. *********************************************************************************************************
  28. *                                DELAY TASK 'n' TICKS   (n from 0 to 65535)
  29. *
  30. * Description: This function is called to delay execution of the currently running task until the
  31. *              specified number of system ticks expires.  This, of course, directly equates to delaying
  32. *              the current task for some time to expire.  No delay will result If the specified delay is
  33. *              0.  If the specified delay is greater than 0 then, a context switch will result.
  34. *
  35. * Arguments  : ticks     is the time delay that the task will be suspended in number of clock 'ticks'.
  36. *                        Note that by specifying 0, the task will not be delayed.
  37. *
  38. * Returns    : none
  39. *********************************************************************************************************
  40. */
  41. void  OSTimeDly (INT16U ticks)
  42. {
  43.     INT8U      y;
  44. #if OS_CRITICAL_METHOD == 3                      /* Allocate storage for CPU status register           */
  45.     OS_CPU_SR  cpu_sr = 0;
  46. #endif
  47.     if (OSIntNesting > 0) {                      /* See if trying to call from an ISR                  */
  48.         return;
  49.     }
  50.     if (ticks > 0) {                             /* 0 means no delay!                                  */
  51.         OS_ENTER_CRITICAL();
  52.         y            =  OSTCBCur->OSTCBY;        /* Delay current task                                 */
  53.         OSRdyTbl[y] &= ~OSTCBCur->OSTCBBitX;
  54.         if (OSRdyTbl[y] == 0) {
  55.             OSRdyGrp &= ~OSTCBCur->OSTCBBitY;
  56.         }
  57.         OSTCBCur->OSTCBDly = ticks;              /* Load ticks in TCB                                  */
  58.         OS_EXIT_CRITICAL();
  59.         OS_Sched();                              /* Find next task to run!                             */
  60.     }
  61. }
  62. /*$PAGE*/
  63. /*
  64. *********************************************************************************************************
  65. *                                     DELAY TASK FOR SPECIFIED TIME
  66. *
  67. * Description: This function is called to delay execution of the currently running task until some time
  68. *              expires.  This call allows you to specify the delay time in HOURS, MINUTES, SECONDS and
  69. *              MILLISECONDS instead of ticks.
  70. *
  71. * Arguments  : hours     specifies the number of hours that the task will be delayed (max. is 255)
  72. *              minutes   specifies the number of minutes (max. 59)
  73. *              seconds   specifies the number of seconds (max. 59)
  74. *              milli     specifies the number of milliseconds (max. 999)
  75. *
  76. * Returns    : OS_ERR_NONE
  77. *              OS_ERR_TIME_INVALID_MINUTES
  78. *              OS_ERR_TIME_INVALID_SECONDS
  79. *              OS_ERR_TIME_INVALID_MS
  80. *              OS_ERR_TIME_ZERO_DLY
  81. *              OS_ERR_TIME_DLY_ISR
  82. *
  83. * Note(s)    : The resolution on the milliseconds depends on the tick rate.  For example, you can't do
  84. *              a 10 mS delay if the ticker interrupts every 100 mS.  In this case, the delay would be
  85. *              set to 0.  The actual delay is rounded to the nearest tick.
  86. *********************************************************************************************************
  87. */
  88. #if OS_TIME_DLY_HMSM_EN > 0
  89. INT8U  OSTimeDlyHMSM (INT8U hours, INT8U minutes, INT8U seconds, INT16U ms)
  90. {
  91.     INT32U ticks;
  92.     INT16U loops;
  93.     if (OSIntNesting > 0) {                      /* See if trying to call from an ISR                  */
  94.         return (OS_ERR_TIME_DLY_ISR);
  95.     }
  96. #if OS_ARG_CHK_EN > 0
  97.     if (hours == 0) {
  98.         if (minutes == 0) {
  99.             if (seconds == 0) {
  100.                 if (ms == 0) {
  101.                     return (OS_ERR_TIME_ZERO_DLY);
  102.                 }
  103.             }
  104.         }
  105.     }
  106.     if (minutes > 59) {
  107.         return (OS_ERR_TIME_INVALID_MINUTES);    /* Validate arguments to be within range              */
  108.     }
  109.     if (seconds > 59) {
  110.         return (OS_ERR_TIME_INVALID_SECONDS);
  111.     }
  112.     if (ms > 999) {
  113.         return (OS_ERR_TIME_INVALID_MS);
  114.     }
  115. #endif
  116.                                                  /* Compute the total number of clock ticks required.. */
  117.                                                  /* .. (rounded to the nearest tick)                   */
  118.     ticks = ((INT32U)hours * 3600L + (INT32U)minutes * 60L + (INT32U)seconds) * OS_TICKS_PER_SEC
  119.           + OS_TICKS_PER_SEC * ((INT32U)ms + 500L / OS_TICKS_PER_SEC) / 1000L;
  120.     loops = (INT16U)(ticks >> 16);               /* Compute the integral number of 65536 tick delays   */
  121.     ticks = ticks & 0xFFFFL;                     /* Obtain  the fractional number of ticks             */
  122.     OSTimeDly((INT16U)ticks);
  123.     while (loops > 0) {
  124.         OSTimeDly((INT16U)32768u);
  125.         OSTimeDly((INT16U)32768u);
  126.         loops--;
  127.     }
  128.     return (OS_ERR_NONE);
  129. }
  130. #endif
  131. /*$PAGE*/
  132. /*
  133. *********************************************************************************************************
  134. *                                         RESUME A DELAYED TASK
  135. *
  136. * Description: This function is used resume a task that has been delayed through a call to either
  137. *              OSTimeDly() or OSTimeDlyHMSM().  Note that you can call this function to resume a
  138. *              task that is waiting for an event with timeout.  This would make the task look
  139. *              like a timeout occurred.
  140. *
  141. *              Also, you cannot resume a task that has called OSTimeDlyHMSM() with a combined time that
  142. *              exceeds 65535 clock ticks.  In other words, if the clock tick runs at 100 Hz then, you will
  143. *              not be able to resume a delayed task that called OSTimeDlyHMSM(0, 10, 55, 350) or higher:
  144. *
  145. *                  (10 Minutes * 60 + 55 Seconds + 0.35) * 100 ticks/second.
  146. *
  147. * Arguments  : prio                      specifies the priority of the task to resume
  148. *
  149. * Returns    : OS_ERR_NONE               Task has been resumed
  150. *              OS_ERR_PRIO_INVALID       if the priority you specify is higher that the maximum allowed
  151. *                                        (i.e. >= OS_LOWEST_PRIO)
  152. *              OS_ERR_TIME_NOT_DLY       Task is not waiting for time to expire
  153. *              OS_ERR_TASK_NOT_EXIST     The desired task has not been created or has been assigned to a Mutex.
  154. *********************************************************************************************************
  155. */
  156. #if OS_TIME_DLY_RESUME_EN > 0
  157. INT8U  OSTimeDlyResume (INT8U prio)
  158. {
  159.     OS_TCB    *ptcb;
  160. #if OS_CRITICAL_METHOD == 3                                    /* Storage for CPU status register      */
  161.     OS_CPU_SR  cpu_sr = 0;
  162. #endif
  163.     if (prio >= OS_LOWEST_PRIO) {
  164.         return (OS_ERR_PRIO_INVALID);
  165.     }
  166.     OS_ENTER_CRITICAL();
  167.     ptcb = OSTCBPrioTbl[prio];                                 /* Make sure that task exist            */
  168.     if (ptcb == (OS_TCB *)0) {
  169.         OS_EXIT_CRITICAL();
  170.         return (OS_ERR_TASK_NOT_EXIST);                        /* The task does not exist              */
  171.     }
  172.     if (ptcb == OS_TCB_RESERVED) {
  173.         OS_EXIT_CRITICAL();
  174.         return (OS_ERR_TASK_NOT_EXIST);                        /* The task does not exist              */
  175.     }
  176.     if (ptcb->OSTCBDly == 0) {                                 /* See if task is delayed               */
  177.         OS_EXIT_CRITICAL();
  178.         return (OS_ERR_TIME_NOT_DLY);                          /* Indicate that task was not delayed   */
  179.     }
  180.     ptcb->OSTCBDly = 0;                                        /* Clear the time delay                 */
  181.     if ((ptcb->OSTCBStat & OS_STAT_PEND_ANY) != OS_STAT_RDY) {
  182.         ptcb->OSTCBStat     &= ~OS_STAT_PEND_ANY;              /* Yes, Clear status flag               */
  183.         ptcb->OSTCBStatPend  =  OS_STAT_PEND_TO;               /* Indicate PEND timeout                */
  184.     } else {
  185.         ptcb->OSTCBStatPend  =  OS_STAT_PEND_OK;
  186.     }
  187.     if ((ptcb->OSTCBStat & OS_STAT_SUSPEND) == OS_STAT_RDY) {  /* Is task suspended?                   */
  188.         OSRdyGrp               |= ptcb->OSTCBBitY;             /* No,  Make ready                      */
  189.         OSRdyTbl[ptcb->OSTCBY] |= ptcb->OSTCBBitX;
  190.         OS_EXIT_CRITICAL();
  191.         OS_Sched();                                            /* See if this is new highest priority  */
  192.     } else {
  193.         OS_EXIT_CRITICAL();                                    /* Task may be suspended                */
  194.     }
  195.     return (OS_ERR_NONE);
  196. }
  197. #endif
  198. /*$PAGE*/
  199. /*
  200. *********************************************************************************************************
  201. *                                         GET CURRENT SYSTEM TIME
  202. *
  203. * Description: This function is used by your application to obtain the current value of the 32-bit
  204. *              counter which keeps track of the number of clock ticks.
  205. *
  206. * Arguments  : none
  207. *
  208. * Returns    : The current value of OSTime
  209. *********************************************************************************************************
  210. */
  211. #if OS_TIME_GET_SET_EN > 0
  212. INT32U  OSTimeGet (void)
  213. {
  214.     INT32U     ticks;
  215. #if OS_CRITICAL_METHOD == 3                      /* Allocate storage for CPU status register           */
  216.     OS_CPU_SR  cpu_sr = 0;
  217. #endif
  218.     OS_ENTER_CRITICAL();
  219.     ticks = OSTime;
  220.     OS_EXIT_CRITICAL();
  221.     return (ticks);
  222. }
  223. #endif
  224. /*
  225. *********************************************************************************************************
  226. *                                            SET SYSTEM CLOCK
  227. *
  228. * Description: This function sets the 32-bit counter which keeps track of the number of clock ticks.
  229. *
  230. * Arguments  : ticks      specifies the new value that OSTime needs to take.
  231. *
  232. * Returns    : none
  233. *********************************************************************************************************
  234. */
  235. #if OS_TIME_GET_SET_EN > 0
  236. void  OSTimeSet (INT32U ticks)
  237. {
  238. #if OS_CRITICAL_METHOD == 3                      /* Allocate storage for CPU status register           */
  239.     OS_CPU_SR  cpu_sr = 0;
  240. #endif
  241.     OS_ENTER_CRITICAL();
  242.     OSTime = ticks;
  243.     OS_EXIT_CRITICAL();
  244. }
  245. #endif