OS_TIME.lst
上传用户:tzjinxin1
上传日期:2022-08-08
资源大小:272k
文件大小:14k
开发平台:

Visual C++

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