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

uCOS

开发平台:

C/C++

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