OS_FLAG.C
上传用户:ssllxx2007
上传日期:2022-06-12
资源大小:784k
文件大小:43k
源码类别:

uCOS

开发平台:

C/C++

  1. /*
  2. *********************************************************************************************************
  3. *                                                uC/OS-II
  4. *                                          The Real-Time Kernel
  5. *                                         EVENT FLAG  MANAGEMENT
  6. *
  7. *                          (c) Copyright 2001-2002, Jean J. Labrosse, Weston, FL
  8. *                                           All Rights Reserved
  9. *
  10. * File : OS_FLAG.C
  11. * By   : Jean J. Labrosse
  12. *********************************************************************************************************
  13. */
  14. #ifndef  OS_MASTER_FILE
  15. #include "..APPincludes.h"
  16. #endif
  17. #if (OS_VERSION >= 251) && (OS_FLAG_EN > 0) && (OS_MAX_FLAGS > 0)
  18. /*
  19. *********************************************************************************************************
  20. *                                            LOCAL PROTOTYPES
  21. *********************************************************************************************************
  22. */
  23. static  void     OS_FlagBlock(OS_FLAG_GRP *pgrp, OS_FLAG_NODE *pnode, OS_FLAGS flags, INT8U wait_type, INT16U timeout);
  24. static  BOOLEAN  OS_FlagTaskRdy(OS_FLAG_NODE *pnode, OS_FLAGS flags_rdy);
  25. /*$PAGE*/
  26. /*
  27. *********************************************************************************************************
  28. *                              CHECK THE STATUS OF FLAGS IN AN EVENT FLAG GROUP
  29. *
  30. * Description: This function is called to check the status of a combination of bits to be set or cleared
  31. *              in an event flag group.  Your application can check for ANY bit to be set/cleared or ALL
  32. *              bits to be set/cleared.
  33. *
  34. *              This call does not block if the desired flags are not present.
  35. *
  36. * Arguments  : pgrp          is a pointer to the desired event flag group.
  37. *
  38. *              flags         Is a bit pattern indicating which bit(s) (i.e. flags) you wish to check.
  39. *                            The bits you want are specified by setting the corresponding bits in
  40. *                            'flags'.  e.g. if your application wants to wait for bits 0 and 1 then
  41. *                            'flags' would contain 0x03.
  42. *
  43. *              wait_type     specifies whether you want ALL bits to be set/cleared or ANY of the bits
  44. *                            to be set/cleared.
  45. *                            You can specify the following argument:
  46. *
  47. *                            OS_FLAG_WAIT_CLR_ALL   You will check ALL bits in 'flags' to be clear (0)
  48. *                            OS_FLAG_WAIT_CLR_ANY   You will check ANY bit  in 'flags' to be clear (0)
  49. *                            OS_FLAG_WAIT_SET_ALL   You will check ALL bits in 'flags' to be set   (1)
  50. *                            OS_FLAG_WAIT_SET_ANY   You will check ANY bit  in 'flags' to be set   (1)
  51. *
  52. *                            NOTE: Add OS_FLAG_CONSUME if you want the event flag to be 'consumed' by
  53. *                                  the call.  Example, to wait for any flag in a group AND then clear
  54. *                                  the flags that are present, set 'wait_type' to:
  55. *
  56. *                                  OS_FLAG_WAIT_SET_ANY + OS_FLAG_CONSUME
  57. *
  58. *              err           is a pointer to an error code and can be:
  59. *                            OS_NO_ERR              No error
  60. *                            OS_ERR_EVENT_TYPE      You are not pointing to an event flag group
  61. *                            OS_FLAG_ERR_WAIT_TYPE  You didn't specify a proper 'wait_type' argument.
  62. *                            OS_FLAG_INVALID_PGRP   You passed a NULL pointer instead of the event flag
  63. *                                                   group handle.
  64. *                            OS_FLAG_ERR_NOT_RDY    The desired flags you are waiting for are not
  65. *                                                   available.
  66. *
  67. * Returns    : The state of the flags in the event flag group.
  68. *
  69. * Called from: Task or ISR
  70. *********************************************************************************************************
  71. */
  72. #if OS_FLAG_ACCEPT_EN > 0
  73. OS_FLAGS  OSFlagAccept (OS_FLAG_GRP *pgrp, OS_FLAGS flags, INT8U wait_type, INT8U *err)
  74. {
  75. #if OS_CRITICAL_METHOD == 3                                /* Allocate storage for CPU status register */
  76.     OS_CPU_SR     cpu_sr;
  77. #endif
  78.     OS_FLAGS      flags_cur;
  79.     OS_FLAGS      flags_rdy;
  80.     BOOLEAN       consume;
  81. #if OS_ARG_CHK_EN > 0
  82.     if (pgrp == (OS_FLAG_GRP *)0) {                        /* Validate 'pgrp'                          */
  83.         *err = OS_FLAG_INVALID_PGRP;
  84.         return ((OS_FLAGS)0);
  85.     }
  86.     if (pgrp->OSFlagType != OS_EVENT_TYPE_FLAG) {          /* Validate event block type                */
  87.         *err = OS_ERR_EVENT_TYPE;
  88.         return ((OS_FLAGS)0);
  89.     }
  90. #endif
  91.     if (wait_type & OS_FLAG_CONSUME) {                     /* See if we need to consume the flags      */
  92.         wait_type &= ~OS_FLAG_CONSUME;
  93.         consume    = TRUE;
  94.     } else {
  95.         consume    = FALSE;
  96.     }
  97. /*$PAGE*/
  98.     *err = OS_NO_ERR;                                      /* Assume NO error until proven otherwise.  */
  99.     OS_ENTER_CRITICAL();
  100.     switch (wait_type) {
  101.         case OS_FLAG_WAIT_SET_ALL:                         /* See if all required flags are set        */
  102.              flags_rdy = pgrp->OSFlagFlags & flags;        /* Extract only the bits we want            */
  103.              if (flags_rdy == flags) {                     /* Must match ALL the bits that we want     */
  104.                  if (consume == TRUE) {                    /* See if we need to consume the flags      */
  105.                      pgrp->OSFlagFlags &= ~flags_rdy;      /* Clear ONLY the flags that we wanted      */
  106.                  }
  107.              } else {
  108.                  *err  = OS_FLAG_ERR_NOT_RDY;
  109.              }
  110.              flags_cur = pgrp->OSFlagFlags;                /* Will return the state of the group       */
  111.              OS_EXIT_CRITICAL();
  112.              break;
  113.         case OS_FLAG_WAIT_SET_ANY:
  114.              flags_rdy = pgrp->OSFlagFlags & flags;        /* Extract only the bits we want            */
  115.              if (flags_rdy != (OS_FLAGS)0) {               /* See if any flag set                      */
  116.                  if (consume == TRUE) {                    /* See if we need to consume the flags      */
  117.                      pgrp->OSFlagFlags &= ~flags_rdy;      /* Clear ONLY the flags that we got         */
  118.                  }
  119.              } else {
  120.                  *err  = OS_FLAG_ERR_NOT_RDY;
  121.              }
  122.              flags_cur = pgrp->OSFlagFlags;                /* Will return the state of the group       */
  123.              OS_EXIT_CRITICAL();
  124.              break;
  125. #if OS_FLAG_WAIT_CLR_EN > 0
  126.         case OS_FLAG_WAIT_CLR_ALL:                         /* See if all required flags are cleared    */
  127.              flags_rdy = ~pgrp->OSFlagFlags & flags;       /* Extract only the bits we want            */
  128.              if (flags_rdy == flags) {                     /* Must match ALL the bits that we want     */
  129.                  if (consume == TRUE) {                    /* See if we need to consume the flags      */
  130.                      pgrp->OSFlagFlags |= flags_rdy;       /* Set ONLY the flags that we wanted        */
  131.                  }
  132.              } else {
  133.                  *err  = OS_FLAG_ERR_NOT_RDY;
  134.              }
  135.              flags_cur = pgrp->OSFlagFlags;                /* Will return the state of the group       */
  136.              OS_EXIT_CRITICAL();
  137.              break;
  138.         case OS_FLAG_WAIT_CLR_ANY:
  139.              flags_rdy = ~pgrp->OSFlagFlags & flags;       /* Extract only the bits we want            */
  140.              if (flags_rdy != (OS_FLAGS)0) {               /* See if any flag cleared                  */
  141.                  if (consume == TRUE) {                    /* See if we need to consume the flags      */
  142.                      pgrp->OSFlagFlags |= flags_rdy;       /* Set ONLY the flags that we got           */
  143.                  }
  144.              } else {
  145.                  *err  = OS_FLAG_ERR_NOT_RDY;
  146.              }
  147.              flags_cur = pgrp->OSFlagFlags;                /* Will return the state of the group       */
  148.              OS_EXIT_CRITICAL();
  149.              break;
  150. #endif
  151.         default:
  152.              OS_EXIT_CRITICAL();
  153.              flags_cur = (OS_FLAGS)0;
  154.              *err      = OS_FLAG_ERR_WAIT_TYPE;
  155.              break;
  156.     }
  157.     return (flags_cur);
  158. }
  159. #endif
  160. /*$PAGE*/
  161. /*
  162. *********************************************************************************************************
  163. *                                           CREATE AN EVENT FLAG
  164. *
  165. * Description: This function is called to create an event flag group.
  166. *
  167. * Arguments  : flags         Contains the initial value to store in the event flag group.
  168. *
  169. *              err           is a pointer to an error code which will be returned to your application:
  170. *                               OS_NO_ERR                if the call was successful.
  171. *                               OS_ERR_CREATE_ISR        if you attempted to create an Event Flag from an
  172. *                                                        ISR.
  173. *                               OS_FLAG_GRP_DEPLETED     if there are no more event flag groups
  174. *
  175. * Returns    : A pointer to an event flag group or a NULL pointer if no more groups are available.
  176. *
  177. * Called from: Task ONLY
  178. *********************************************************************************************************
  179. */
  180. OS_FLAG_GRP  *OSFlagCreate (OS_FLAGS flags, INT8U *err)
  181. {
  182. #if OS_CRITICAL_METHOD == 3                         /* Allocate storage for CPU status register        */
  183.     OS_CPU_SR    cpu_sr;
  184. #endif
  185.     OS_FLAG_GRP *pgrp;
  186.     if (OSIntNesting > 0) {                         /* See if called from ISR ...                      */
  187.         *err = OS_ERR_CREATE_ISR;                   /* ... can't CREATE from an ISR                    */
  188.         return ((OS_FLAG_GRP *)0);
  189.     }
  190.     OS_ENTER_CRITICAL();
  191.     pgrp = OSFlagFreeList;                          /* Get next free event flag                        */
  192.     if (pgrp != (OS_FLAG_GRP *)0) {                 /* See if we have event flag groups available      */
  193.                                                     /* Adjust free list                                */
  194.         OSFlagFreeList       = (OS_FLAG_GRP *)OSFlagFreeList->OSFlagWaitList;
  195.         pgrp->OSFlagType     = OS_EVENT_TYPE_FLAG;  /* Set to event flag group type                    */
  196.         pgrp->OSFlagFlags    = flags;               /* Set to desired initial value                    */
  197.         pgrp->OSFlagWaitList = (void *)0;           /* Clear list of tasks waiting on flags            */
  198.         OS_EXIT_CRITICAL();
  199.         *err                 = OS_NO_ERR;
  200.     } else {
  201.         OS_EXIT_CRITICAL();
  202.         *err                 = OS_FLAG_GRP_DEPLETED;
  203.     }
  204.     return (pgrp);                                  /* Return pointer to event flag group              */
  205. }
  206. /*$PAGE*/
  207. /*
  208. *********************************************************************************************************
  209. *                                     DELETE AN EVENT FLAG GROUP
  210. *
  211. * Description: This function deletes an event flag group and readies all tasks pending on the event flag
  212. *              group.
  213. *
  214. * Arguments  : pgrp          is a pointer to the desired event flag group.
  215. *
  216. *              opt           determines delete options as follows:
  217. *                            opt == OS_DEL_NO_PEND   Deletes the event flag group ONLY if no task pending
  218. *                            opt == OS_DEL_ALWAYS    Deletes the event flag group even if tasks are
  219. *                                                    waiting.  In this case, all the tasks pending will be
  220. *                                                    readied.
  221. *
  222. *              err           is a pointer to an error code that can contain one of the following values:
  223. *                            OS_NO_ERR               The call was successful and the event flag group was
  224. *                                                    deleted
  225. *                            OS_ERR_DEL_ISR          If you attempted to delete the event flag group from
  226. *                                                    an ISR
  227. *                            OS_FLAG_INVALID_PGRP    If 'pgrp' is a NULL pointer.
  228. *                            OS_ERR_EVENT_TYPE       If you didn't pass a pointer to an event flag group
  229. *                            OS_ERR_INVALID_OPT      An invalid option was specified
  230. *                            OS_ERR_TASK_WAITING     One or more tasks were waiting on the event flag
  231. *                                                    group.
  232. *
  233. * Returns    : pevent        upon error
  234. *              (OS_EVENT *)0 if the semaphore was successfully deleted.
  235. *
  236. * Note(s)    : 1) This function must be used with care.  Tasks that would normally expect the presence of
  237. *                 the event flag group MUST check the return code of OSFlagAccept() and OSFlagPend().
  238. *              2) This call can potentially disable interrupts for a long time.  The interrupt disable
  239. *                 time is directly proportional to the number of tasks waiting on the event flag group.
  240. *********************************************************************************************************
  241. */
  242. #if OS_FLAG_DEL_EN > 0
  243. OS_FLAG_GRP  *OSFlagDel (OS_FLAG_GRP *pgrp, INT8U opt, INT8U *err)
  244. {
  245. #if OS_CRITICAL_METHOD == 3                                /* Allocate storage for CPU status register */
  246.     OS_CPU_SR     cpu_sr;
  247. #endif
  248.     BOOLEAN       tasks_waiting;
  249.     OS_FLAG_NODE *pnode;
  250.     if (OSIntNesting > 0) {                                /* See if called from ISR ...               */
  251.         *err = OS_ERR_DEL_ISR;                             /* ... can't DELETE from an ISR             */
  252.         return (pgrp);
  253.     }
  254. #if OS_ARG_CHK_EN > 0
  255.     if (pgrp == (OS_FLAG_GRP *)0) {                        /* Validate 'pgrp'                          */
  256.         *err = OS_FLAG_INVALID_PGRP;
  257.         return (pgrp);
  258.     }
  259.     if (pgrp->OSFlagType != OS_EVENT_TYPE_FLAG) {          /* Validate event group type                */
  260.         *err = OS_ERR_EVENT_TYPE;
  261.         return (pgrp);
  262.     }
  263. #endif
  264.     OS_ENTER_CRITICAL();
  265.     if (pgrp->OSFlagWaitList != (void *)0) {               /* See if any tasks waiting on event flags  */
  266.         tasks_waiting = TRUE;                              /* Yes                                      */
  267.     } else {
  268.         tasks_waiting = FALSE;                             /* No                                       */
  269.     }
  270.     switch (opt) {
  271.         case OS_DEL_NO_PEND:                               /* Delete group if no task waiting          */
  272.              if (tasks_waiting == FALSE) {
  273.                  pgrp->OSFlagType     = OS_EVENT_TYPE_UNUSED;
  274.                  pgrp->OSFlagWaitList = (void *)OSFlagFreeList; /* Return group to free list           */
  275.                  OSFlagFreeList       = pgrp;
  276.                  OS_EXIT_CRITICAL();
  277.                  *err                 = OS_NO_ERR;
  278.                  return ((OS_FLAG_GRP *)0);                /* Event Flag Group has been deleted        */
  279.              } else {
  280.                  OS_EXIT_CRITICAL();
  281.                  *err                 = OS_ERR_TASK_WAITING;
  282.                  return (pgrp);
  283.              }
  284.         case OS_DEL_ALWAYS:                                /* Always delete the event flag group       */
  285.              pnode = (OS_FLAG_NODE *)pgrp->OSFlagWaitList;
  286.              while (pnode != (OS_FLAG_NODE *)0) {          /* Ready ALL tasks waiting for flags        */
  287.                  OS_FlagTaskRdy(pnode, (OS_FLAGS)0);
  288.                  pnode = (OS_FLAG_NODE *)pnode->OSFlagNodeNext;
  289.              }
  290.              pgrp->OSFlagType     = OS_EVENT_TYPE_UNUSED;
  291.              pgrp->OSFlagWaitList = (void *)OSFlagFreeList;/* Return group to free list                */
  292.              OSFlagFreeList       = pgrp;
  293.              OS_EXIT_CRITICAL();
  294.              if (tasks_waiting == TRUE) {                  /* Reschedule only if task(s) were waiting  */
  295.                  OS_Sched();                               /* Find highest priority task ready to run  */
  296.              }
  297.              *err = OS_NO_ERR;
  298.              return ((OS_FLAG_GRP *)0);                    /* Event Flag Group has been deleted        */
  299.         default:
  300.              OS_EXIT_CRITICAL();
  301.              *err = OS_ERR_INVALID_OPT;
  302.              return (pgrp);
  303.     }
  304. }
  305. #endif
  306. /*$PAGE*/
  307. /*
  308. *********************************************************************************************************
  309. *                                        WAIT ON AN EVENT FLAG GROUP
  310. *
  311. * Description: This function is called to wait for a combination of bits to be set in an event flag
  312. *              group.  Your application can wait for ANY bit to be set or ALL bits to be set.
  313. *
  314. * Arguments  : pgrp          is a pointer to the desired event flag group.
  315. *
  316. *              flags         Is a bit pattern indicating which bit(s) (i.e. flags) you wish to wait for.
  317. *                            The bits you want are specified by setting the corresponding bits in
  318. *                            'flags'.  e.g. if your application wants to wait for bits 0 and 1 then
  319. *                            'flags' would contain 0x03.
  320. *
  321. *              wait_type     specifies whether you want ALL bits to be set or ANY of the bits to be set.
  322. *                            You can specify the following argument:
  323. *
  324. *                            OS_FLAG_WAIT_CLR_ALL   You will wait for ALL bits in 'mask' to be clear (0)
  325. *                            OS_FLAG_WAIT_SET_ALL   You will wait for ALL bits in 'mask' to be set   (1)
  326. *                            OS_FLAG_WAIT_CLR_ANY   You will wait for ANY bit  in 'mask' to be clear (0)
  327. *                            OS_FLAG_WAIT_SET_ANY   You will wait for ANY bit  in 'mask' to be set   (1)
  328. *
  329. *                            NOTE: Add OS_FLAG_CONSUME if you want the event flag to be 'consumed' by
  330. *                                  the call.  Example, to wait for any flag in a group AND then clear
  331. *                                  the flags that are present, set 'wait_type' to:
  332. *
  333. *                                  OS_FLAG_WAIT_SET_ANY + OS_FLAG_CONSUME
  334. *
  335. *              timeout       is an optional timeout (in clock ticks) that your task will wait for the
  336. *                            desired bit combination.  If you specify 0, however, your task will wait
  337. *                            forever at the specified event flag group or, until a message arrives.
  338. *
  339. *              err           is a pointer to an error code and can be:
  340. *                            OS_NO_ERR              The desired bits have been set within the specified
  341. *                                                   'timeout'.
  342. *                            OS_ERR_PEND_ISR        If you tried to PEND from an ISR
  343. *                            OS_FLAG_INVALID_PGRP   If 'pgrp' is a NULL pointer.
  344. *                            OS_ERR_EVENT_TYPE      You are not pointing to an event flag group
  345. *                            OS_TIMEOUT             The bit(s) have not been set in the specified
  346. *                                                   'timeout'.
  347. *                            OS_FLAG_ERR_WAIT_TYPE  You didn't specify a proper 'wait_type' argument.
  348. *
  349. * Returns    : The new state of the flags in the event flag group when the task is resumed or,
  350. *              0 if a timeout or an error occurred.
  351. *
  352. * Called from: Task ONLY
  353. *********************************************************************************************************
  354. */
  355. OS_FLAGS  OSFlagPend (OS_FLAG_GRP *pgrp, OS_FLAGS flags, INT8U wait_type, INT16U timeout, INT8U *err)
  356. {
  357. #if OS_CRITICAL_METHOD == 3                                /* Allocate storage for CPU status register */
  358.     OS_CPU_SR     cpu_sr;
  359. #endif
  360.     OS_FLAG_NODE  node;
  361.     OS_FLAGS      flags_cur;
  362.     OS_FLAGS      flags_rdy;
  363.     BOOLEAN       consume;
  364.     if (OSIntNesting > 0) {                                /* See if called from ISR ...               */
  365.         *err = OS_ERR_PEND_ISR;                            /* ... can't PEND from an ISR               */
  366.         return ((OS_FLAGS)0);
  367.     }
  368. #if OS_ARG_CHK_EN > 0
  369.     if (pgrp == (OS_FLAG_GRP *)0) {                        /* Validate 'pgrp'                          */
  370.         *err = OS_FLAG_INVALID_PGRP;
  371.         return ((OS_FLAGS)0);
  372.     }
  373.     if (pgrp->OSFlagType != OS_EVENT_TYPE_FLAG) {          /* Validate event block type                */
  374.         *err = OS_ERR_EVENT_TYPE;
  375.         return ((OS_FLAGS)0);
  376.     }
  377. #endif
  378.     if (wait_type & OS_FLAG_CONSUME) {                     /* See if we need to consume the flags      */
  379.         wait_type &= ~OS_FLAG_CONSUME;
  380.         consume    = TRUE;
  381.     } else {
  382.         consume    = FALSE;
  383.     }
  384. /*$PAGE*/
  385.     OS_ENTER_CRITICAL();
  386.     switch (wait_type) {
  387.         case OS_FLAG_WAIT_SET_ALL:                         /* See if all required flags are set        */
  388.              flags_rdy = pgrp->OSFlagFlags & flags;        /* Extract only the bits we want            */
  389.              if (flags_rdy == flags) {                     /* Must match ALL the bits that we want     */
  390.                  if (consume == TRUE) {                    /* See if we need to consume the flags      */
  391.                      pgrp->OSFlagFlags &= ~flags_rdy;      /* Clear ONLY the flags that we wanted      */
  392.                  }
  393.                  flags_cur = pgrp->OSFlagFlags;            /* Will return the state of the group       */
  394.                  OS_EXIT_CRITICAL();                       /* Yes, condition met, return to caller     */
  395.                  *err      = OS_NO_ERR;
  396.                  return (flags_cur);
  397.              } else {                                      /* Block task until events occur or timeout */
  398.                  OS_FlagBlock(pgrp, &node, flags, wait_type, timeout);
  399.                  OS_EXIT_CRITICAL();
  400.              }
  401.              break;
  402.         case OS_FLAG_WAIT_SET_ANY:
  403.              flags_rdy = pgrp->OSFlagFlags & flags;        /* Extract only the bits we want            */
  404.              if (flags_rdy != (OS_FLAGS)0) {               /* See if any flag set                      */
  405.                  if (consume == TRUE) {                    /* See if we need to consume the flags      */
  406.                      pgrp->OSFlagFlags &= ~flags_rdy;      /* Clear ONLY the flags that we got         */
  407.                  }
  408.                  flags_cur = pgrp->OSFlagFlags;            /* Will return the state of the group       */
  409.                  OS_EXIT_CRITICAL();                       /* Yes, condition met, return to caller     */
  410.                  *err      = OS_NO_ERR;
  411.                  return (flags_cur);
  412.              } else {                                      /* Block task until events occur or timeout */
  413.                  OS_FlagBlock(pgrp, &node, flags, wait_type, timeout);
  414.                  OS_EXIT_CRITICAL();
  415.              }
  416.              break;
  417. #if OS_FLAG_WAIT_CLR_EN > 0
  418.         case OS_FLAG_WAIT_CLR_ALL:                         /* See if all required flags are cleared    */
  419.              flags_rdy = ~pgrp->OSFlagFlags & flags;       /* Extract only the bits we want            */
  420.              if (flags_rdy == flags) {                     /* Must match ALL the bits that we want     */
  421.                  if (consume == TRUE) {                    /* See if we need to consume the flags      */
  422.                      pgrp->OSFlagFlags |= flags_rdy;       /* Set ONLY the flags that we wanted        */
  423.                  }
  424.                  flags_cur = pgrp->OSFlagFlags;            /* Will return the state of the group       */
  425.                  OS_EXIT_CRITICAL();                       /* Yes, condition met, return to caller     */
  426.                  *err      = OS_NO_ERR;
  427.                  return (flags_cur);
  428.              } else {                                      /* Block task until events occur or timeout */
  429.                  OS_FlagBlock(pgrp, &node, flags, wait_type, timeout);
  430.                  OS_EXIT_CRITICAL();
  431.              }
  432.              break;
  433.         case OS_FLAG_WAIT_CLR_ANY:
  434.              flags_rdy = ~pgrp->OSFlagFlags & flags;       /* Extract only the bits we want            */
  435.              if (flags_rdy != (OS_FLAGS)0) {               /* See if any flag cleared                  */
  436.                  if (consume == TRUE) {                    /* See if we need to consume the flags      */
  437.                      pgrp->OSFlagFlags |= flags_rdy;       /* Set ONLY the flags that we got           */
  438.                  }
  439.                  flags_cur = pgrp->OSFlagFlags;            /* Will return the state of the group       */
  440.                  OS_EXIT_CRITICAL();                       /* Yes, condition met, return to caller     */
  441.                  *err      = OS_NO_ERR;
  442.                  return (flags_cur);
  443.              } else {                                      /* Block task until events occur or timeout */
  444.                  OS_FlagBlock(pgrp, &node, flags, wait_type, timeout);
  445.                  OS_EXIT_CRITICAL();
  446.              }
  447.              break;
  448. #endif
  449.         default:
  450.              OS_EXIT_CRITICAL();
  451.              flags_cur = (OS_FLAGS)0;
  452.              *err      = OS_FLAG_ERR_WAIT_TYPE;
  453.              return (flags_cur);
  454.     }
  455.     OS_Sched();                                            /* Find next HPT ready to run               */
  456.     OS_ENTER_CRITICAL();
  457.     if (OSTCBCur->OSTCBStat & OS_STAT_FLAG) {              /* Have we timed-out?                       */
  458.         OS_FlagUnlink(&node);
  459.         OSTCBCur->OSTCBStat = OS_STAT_RDY;                 /* Yes, make task ready-to-run              */
  460.         OS_EXIT_CRITICAL();
  461.         flags_cur           = (OS_FLAGS)0;
  462.         *err                = OS_TIMEOUT;                  /* Indicate that we timed-out waiting       */
  463.     } else {
  464.         if (consume == TRUE) {                             /* See if we need to consume the flags      */
  465.             switch (wait_type) {
  466.                 case OS_FLAG_WAIT_SET_ALL:
  467.                 case OS_FLAG_WAIT_SET_ANY:                 /* Clear ONLY the flags we got              */
  468.                      pgrp->OSFlagFlags &= ~OSTCBCur->OSTCBFlagsRdy;
  469.                      break;
  470. #if OS_FLAG_WAIT_CLR_EN > 0
  471.                 case OS_FLAG_WAIT_CLR_ALL:
  472.                 case OS_FLAG_WAIT_CLR_ANY:                 /* Set   ONLY the flags we got              */
  473.                      pgrp->OSFlagFlags |= OSTCBCur->OSTCBFlagsRdy;
  474.                      break;
  475. #endif
  476.             }
  477.         }
  478.         flags_cur = pgrp->OSFlagFlags;
  479.         OS_EXIT_CRITICAL();
  480.         *err      = OS_NO_ERR;                             /* Event(s) must have occurred              */
  481.     }
  482.     return (flags_cur);
  483. }
  484. /*$PAGE*/
  485. /*
  486. *********************************************************************************************************
  487. *                                         POST EVENT FLAG BIT(S)
  488. *
  489. * Description: This function is called to set or clear some bits in an event flag group.  The bits to
  490. *              set or clear are specified by a 'bit mask'.
  491. *
  492. * Arguments  : pgrp          is a pointer to the desired event flag group.
  493. *
  494. *              flags         If 'opt' (see below) is OS_FLAG_SET, each bit that is set in 'flags' will
  495. *                            set the corresponding bit in the event flag group.  e.g. to set bits 0, 4
  496. *                            and 5 you would set 'flags' to:
  497. *
  498. *                                0x31     (note, bit 0 is least significant bit)
  499. *
  500. *                            If 'opt' (see below) is OS_FLAG_CLR, each bit that is set in 'flags' will
  501. *                            CLEAR the corresponding bit in the event flag group.  e.g. to clear bits 0,
  502. *                            4 and 5 you would specify 'flags' as:
  503. *
  504. *                                0x31     (note, bit 0 is least significant bit)
  505. *
  506. *              opt           indicates whether the flags will be:
  507. *                                set     (OS_FLAG_SET) or
  508. *                                cleared (OS_FLAG_CLR)
  509. *
  510. *              err           is a pointer to an error code and can be:
  511. *                            OS_NO_ERR              The call was successfull
  512. *                            OS_FLAG_INVALID_PGRP   You passed a NULL pointer
  513. *                            OS_ERR_EVENT_TYPE      You are not pointing to an event flag group
  514. *                            OS_FLAG_INVALID_OPT    You specified an invalid option
  515. *
  516. * Returns    : the new value of the event flags bits that are still set.
  517. *
  518. * Called From: Task or ISR
  519. *
  520. * WARNING(s) : 1) The execution time of this function depends on the number of tasks waiting on the event
  521. *                 flag group.
  522. *              2) The amount of time interrupts are DISABLED depends on the number of tasks waiting on
  523. *                 the event flag group.
  524. *********************************************************************************************************
  525. */
  526. OS_FLAGS  OSFlagPost (OS_FLAG_GRP *pgrp, OS_FLAGS flags, INT8U opt, INT8U *err)
  527. {
  528. #if OS_CRITICAL_METHOD == 3                          /* Allocate storage for CPU status register       */
  529.     OS_CPU_SR     cpu_sr;
  530. #endif
  531.     OS_FLAG_NODE *pnode;
  532.     BOOLEAN       sched;
  533.     OS_FLAGS      flags_cur;
  534.     OS_FLAGS      flags_rdy;
  535. #if OS_ARG_CHK_EN > 0
  536.     if (pgrp == (OS_FLAG_GRP *)0) {                  /* Validate 'pgrp'                                */
  537.         *err = OS_FLAG_INVALID_PGRP;
  538.         return ((OS_FLAGS)0);
  539.     }
  540.     if (pgrp->OSFlagType != OS_EVENT_TYPE_FLAG) {    /* Make sure we are pointing to an event flag grp */
  541.         *err = OS_ERR_EVENT_TYPE;
  542.         return ((OS_FLAGS)0);
  543.     }
  544. #endif
  545. /*$PAGE*/
  546.     OS_ENTER_CRITICAL();
  547.     switch (opt) {
  548.         case OS_FLAG_CLR:
  549.              pgrp->OSFlagFlags &= ~flags;            /* Clear the flags specified in the group         */
  550.              break;
  551.         case OS_FLAG_SET:
  552.              pgrp->OSFlagFlags |=  flags;            /* Set   the flags specified in the group         */
  553.              break;
  554.         default:
  555.              OS_EXIT_CRITICAL();                     /* INVALID option                                 */
  556.              *err = OS_FLAG_INVALID_OPT;
  557.              return ((OS_FLAGS)0);
  558.     }
  559.     sched = FALSE;                                   /* Indicate that we don't need rescheduling       */
  560.     pnode = (OS_FLAG_NODE *)pgrp->OSFlagWaitList;
  561.     while (pnode != (OS_FLAG_NODE *)0) {             /* Go through all tasks waiting on event flag(s)  */
  562.         switch (pnode->OSFlagNodeWaitType) {
  563.             case OS_FLAG_WAIT_SET_ALL:               /* See if all req. flags are set for current node */
  564.                  flags_rdy = pgrp->OSFlagFlags & pnode->OSFlagNodeFlags;
  565.                  if (flags_rdy == pnode->OSFlagNodeFlags) {
  566.                      if (OS_FlagTaskRdy(pnode, flags_rdy) == TRUE) { /* Make task RTR, event(s) Rx'd   */
  567.                          sched = TRUE;                               /* When done we will reschedule   */
  568.                      }
  569.                  }
  570.                  break;
  571.             case OS_FLAG_WAIT_SET_ANY:               /* See if any flag set                            */
  572.                  flags_rdy = pgrp->OSFlagFlags & pnode->OSFlagNodeFlags;
  573.                  if (flags_rdy != (OS_FLAGS)0) {
  574.                      if (OS_FlagTaskRdy(pnode, flags_rdy) == TRUE) { /* Make task RTR, event(s) Rx'd   */
  575.                          sched = TRUE;                               /* When done we will reschedule   */
  576.                      }
  577.                  }
  578.                  break;
  579. #if OS_FLAG_WAIT_CLR_EN > 0
  580.             case OS_FLAG_WAIT_CLR_ALL:               /* See if all req. flags are set for current node */
  581.                  flags_rdy = ~pgrp->OSFlagFlags & pnode->OSFlagNodeFlags;
  582.                  if (flags_rdy == pnode->OSFlagNodeFlags) {
  583.                      if (OS_FlagTaskRdy(pnode, flags_rdy) == TRUE) { /* Make task RTR, event(s) Rx'd   */
  584.                          sched = TRUE;                               /* When done we will reschedule   */
  585.                      }
  586.                  }
  587.                  break;
  588.             case OS_FLAG_WAIT_CLR_ANY:               /* See if any flag set                            */
  589.                  flags_rdy = ~pgrp->OSFlagFlags & pnode->OSFlagNodeFlags;
  590.                  if (flags_rdy != (OS_FLAGS)0) {
  591.                      if (OS_FlagTaskRdy(pnode, flags_rdy) == TRUE) { /* Make task RTR, event(s) Rx'd   */
  592.                          sched = TRUE;                               /* When done we will reschedule   */
  593.                      }
  594.                  }
  595.                  break;
  596. #endif
  597.         }
  598.         pnode = (OS_FLAG_NODE *)pnode->OSFlagNodeNext; /* Point to next task waiting for event flag(s) */
  599.     }
  600.     OS_EXIT_CRITICAL();
  601.     if (sched == TRUE) {
  602.         OS_Sched();
  603.     }
  604.     OS_ENTER_CRITICAL();
  605.     flags_cur = pgrp->OSFlagFlags;
  606.     OS_EXIT_CRITICAL();
  607.     *err      = OS_NO_ERR;
  608.     return (flags_cur);
  609. }
  610. /*$PAGE*/
  611. /*
  612. *********************************************************************************************************
  613. *                                           QUERY EVENT FLAG
  614. *
  615. * Description: This function is used to check the value of the event flag group.
  616. *
  617. * Arguments  : pgrp         is a pointer to the desired event flag group.
  618. *
  619. *              err           is a pointer to an error code returned to the called:
  620. *                            OS_NO_ERR              The call was successfull
  621. *                            OS_FLAG_INVALID_PGRP   You passed a NULL pointer
  622. *                            OS_ERR_EVENT_TYPE      You are not pointing to an event flag group
  623. *
  624. * Returns    : The current value of the event flag group.
  625. *
  626. * Called From: Task or ISR
  627. *********************************************************************************************************
  628. */
  629. #if OS_FLAG_QUERY_EN > 0
  630. OS_FLAGS  OSFlagQuery (OS_FLAG_GRP *pgrp, INT8U *err)
  631. {
  632. #if OS_CRITICAL_METHOD == 3                       /* Allocate storage for CPU status register          */
  633.     OS_CPU_SR  cpu_sr;
  634. #endif
  635.     OS_FLAGS   flags;
  636. #if OS_ARG_CHK_EN > 0
  637.     if (pgrp == (OS_FLAG_GRP *)0) {               /* Validate 'pgrp'                                   */
  638.         *err = OS_FLAG_INVALID_PGRP;
  639.         return ((OS_FLAGS)0);
  640.     }
  641.     if (pgrp->OSFlagType != OS_EVENT_TYPE_FLAG) { /* Validate event block type                         */
  642.         *err = OS_ERR_EVENT_TYPE;
  643.         return ((OS_FLAGS)0);
  644.     }
  645. #endif
  646.     OS_ENTER_CRITICAL();
  647.     flags = pgrp->OSFlagFlags;
  648.     OS_EXIT_CRITICAL();
  649.     *err = OS_NO_ERR;
  650.     return (flags);                               /* Return the current value of the event flags       */
  651. }
  652. #endif
  653. /*$PAGE*/
  654. /*
  655. *********************************************************************************************************
  656. *                         SUSPEND TASK UNTIL EVENT FLAG(s) RECEIVED OR TIMEOUT OCCURS
  657. *
  658. * Description: This function is internal to uC/OS-II and is used to put a task to sleep until the desired
  659. *              event flag bit(s) are set.
  660. *
  661. * Arguments  : pgrp          is a pointer to the desired event flag group.
  662. *
  663. *              pnode         is a pointer to a structure which contains data about the task waiting for
  664. *                            event flag bit(s) to be set.
  665. *
  666. *              flags         Is a bit pattern indicating which bit(s) (i.e. flags) you wish to check.
  667. *                            The bits you want are specified by setting the corresponding bits in
  668. *                            'flags'.  e.g. if your application wants to wait for bits 0 and 1 then
  669. *                            'flags' would contain 0x03.
  670. *
  671. *              wait_type     specifies whether you want ALL bits to be set/cleared or ANY of the bits
  672. *                            to be set/cleared.
  673. *                            You can specify the following argument:
  674. *
  675. *                            OS_FLAG_WAIT_CLR_ALL   You will check ALL bits in 'mask' to be clear (0)
  676. *                            OS_FLAG_WAIT_CLR_ANY   You will check ANY bit  in 'mask' to be clear (0)
  677. *                            OS_FLAG_WAIT_SET_ALL   You will check ALL bits in 'mask' to be set   (1)
  678. *                            OS_FLAG_WAIT_SET_ANY   You will check ANY bit  in 'mask' to be set   (1)
  679. *
  680. *              timeout       is the desired amount of time that the task will wait for the event flag
  681. *                            bit(s) to be set.
  682. *
  683. * Returns    : none
  684. *
  685. * Called by  : OSFlagPend()  OS_FLAG.C
  686. *
  687. * Note(s)    : This function is INTERNAL to uC/OS-II and your application should not call it.
  688. *********************************************************************************************************
  689. */
  690. static  void  OS_FlagBlock (OS_FLAG_GRP *pgrp, OS_FLAG_NODE *pnode, OS_FLAGS flags, INT8U wait_type, INT16U timeout)
  691. {
  692.     OS_FLAG_NODE  *pnode_next;
  693.     OSTCBCur->OSTCBStat      |= OS_STAT_FLAG;
  694.     OSTCBCur->OSTCBDly        = timeout;              /* Store timeout in task's TCB                   */
  695. #if OS_TASK_DEL_EN > 0
  696.     OSTCBCur->OSTCBFlagNode   = pnode;                /* TCB to link to node                           */
  697. #endif
  698.     pnode->OSFlagNodeFlags    = flags;                /* Save the flags that we need to wait for       */
  699.     pnode->OSFlagNodeWaitType = wait_type;            /* Save the type of wait we are doing            */
  700.     pnode->OSFlagNodeTCB      = (void *)OSTCBCur;     /* Link to task's TCB                            */
  701.     pnode->OSFlagNodeNext     = pgrp->OSFlagWaitList; /* Add node at beginning of event flag wait list */
  702.     pnode->OSFlagNodePrev     = (void *)0;
  703.     pnode->OSFlagNodeFlagGrp  = (void *)pgrp;         /* Link to Event Flag Group                      */
  704.     pnode_next                = (OS_FLAG_NODE *)pgrp->OSFlagWaitList;
  705.     if (pnode_next != (void *)0) {                    /* Is this the first NODE to insert?             */
  706.         pnode_next->OSFlagNodePrev = pnode;           /* No, link in doubly linked list                */
  707.     }
  708.     pgrp->OSFlagWaitList = (void *)pnode;
  709.                                                       /* Suspend current task until flag(s) received   */
  710.     if ((OSRdyTbl[OSTCBCur->OSTCBY] &= ~OSTCBCur->OSTCBBitX) == 0) {
  711.         OSRdyGrp &= ~OSTCBCur->OSTCBBitY;
  712.     }
  713. }
  714. /*$PAGE*/
  715. /*
  716. *********************************************************************************************************
  717. *                                    INITIALIZE THE EVENT FLAG MODULE
  718. *
  719. * Description: This function is called by uC/OS-II to initialize the event flag module.  Your application
  720. *              MUST NOT call this function.  In other words, this function is internal to uC/OS-II.
  721. *
  722. * Arguments  : none
  723. *
  724. * Returns    : none
  725. *
  726. * WARNING    : You MUST NOT call this function from your code.  This is an INTERNAL function to uC/OS-II.
  727. *********************************************************************************************************
  728. */
  729. void  OS_FlagInit (void)
  730. {
  731. #if OS_MAX_FLAGS == 1
  732.     OSFlagFreeList                 = (OS_FLAG_GRP *)&OSFlagTbl[0];  /* Only ONE event flag group!      */
  733.     OSFlagFreeList->OSFlagType     = OS_EVENT_TYPE_UNUSED;
  734.     OSFlagFreeList->OSFlagWaitList = (void *)0;
  735. #endif
  736. #if OS_MAX_FLAGS >= 2
  737.     INT8U        i;
  738.     OS_FLAG_GRP *pgrp1;
  739.     OS_FLAG_GRP *pgrp2;
  740.     pgrp1 = &OSFlagTbl[0];
  741.     pgrp2 = &OSFlagTbl[1];
  742.     for (i = 0; i < (OS_MAX_FLAGS - 1); i++) {                      /* Init. list of free EVENT FLAGS  */
  743.         pgrp1->OSFlagType     = OS_EVENT_TYPE_UNUSED;
  744.         pgrp1->OSFlagWaitList = (void *)pgrp2;
  745.         pgrp1++;
  746.         pgrp2++;
  747.     }
  748.     pgrp1->OSFlagWaitList = (void *)0;
  749.     OSFlagFreeList        = (OS_FLAG_GRP *)&OSFlagTbl[0];
  750. #endif
  751. }
  752. /*$PAGE*/
  753. /*
  754. *********************************************************************************************************
  755. *                              MAKE TASK READY-TO-RUN, EVENT(s) OCCURRED
  756. *
  757. * Description: This function is internal to uC/OS-II and is used to make a task ready-to-run because the
  758. *              desired event flag bits have been set.
  759. *
  760. * Arguments  : pnode         is a pointer to a structure which contains data about the task waiting for
  761. *                            event flag bit(s) to be set.
  762. *
  763. *              flags_rdy     contains the bit pattern of the event flags that cause the task to become
  764. *                            ready-to-run.
  765. *
  766. * Returns    : none
  767. *
  768. * Called by  : OSFlagsPost() OS_FLAG.C
  769. *
  770. * Note(s)    : 1) This function assumes that interrupts are disabled.
  771. *              2) This function is INTERNAL to uC/OS-II and your application should not call it.
  772. *********************************************************************************************************
  773. */
  774. static  BOOLEAN  OS_FlagTaskRdy (OS_FLAG_NODE *pnode, OS_FLAGS flags_rdy)
  775. {
  776.     OS_TCB   *ptcb;
  777.     BOOLEAN   sched;
  778.     ptcb                = (OS_TCB *)pnode->OSFlagNodeTCB;  /* Point to TCB of waiting task             */
  779.     ptcb->OSTCBDly      = 0;
  780.     ptcb->OSTCBFlagsRdy = flags_rdy;
  781.     ptcb->OSTCBStat    &= ~OS_STAT_FLAG;
  782.     if (ptcb->OSTCBStat == OS_STAT_RDY) {                  /* Put task into ready list                 */
  783.         OSRdyGrp               |= ptcb->OSTCBBitY;
  784.         OSRdyTbl[ptcb->OSTCBY] |= ptcb->OSTCBBitX;
  785.         sched                   = TRUE;
  786.     } else {
  787.         sched                   = FALSE;
  788.     }
  789.     OS_FlagUnlink(pnode);
  790.     return (sched);
  791. }
  792. /*$PAGE*/
  793. /*
  794. *********************************************************************************************************
  795. *                                  UNLINK EVENT FLAG NODE FROM WAITING LIST
  796. *
  797. * Description: This function is internal to uC/OS-II and is used to unlink an event flag node from a
  798. *              list of tasks waiting for the event flag.
  799. *
  800. * Arguments  : pnode         is a pointer to a structure which contains data about the task waiting for
  801. *                            event flag bit(s) to be set.
  802. *
  803. * Returns    : none
  804. *
  805. * Called by  : OS_FlagTaskRdy() OS_FLAG.C
  806. *              OSFlagPend()     OS_FLAG.C
  807. *              OSTaskDel()      OS_TASK.C
  808. *
  809. * Note(s)    : 1) This function assumes that interrupts are disabled.
  810. *              2) This function is INTERNAL to uC/OS-II and your application should not call it.
  811. *********************************************************************************************************
  812. */
  813. void  OS_FlagUnlink (OS_FLAG_NODE *pnode)
  814. {
  815. #if OS_TASK_DEL_EN > 0
  816.     OS_TCB       *ptcb;
  817. #endif
  818.     OS_FLAG_GRP  *pgrp;
  819.     OS_FLAG_NODE *pnode_prev;
  820.     OS_FLAG_NODE *pnode_next;
  821.     pnode_prev = (OS_FLAG_NODE *)pnode->OSFlagNodePrev;
  822.     pnode_next = (OS_FLAG_NODE *)pnode->OSFlagNodeNext;
  823.     if (pnode_prev == (OS_FLAG_NODE *)0) {                      /* Is it first node in wait list?      */
  824.         pgrp                 = (OS_FLAG_GRP *)pnode->OSFlagNodeFlagGrp;
  825.         pgrp->OSFlagWaitList = (void *)pnode_next;              /*      Update list for new 1st node   */
  826.         if (pnode_next != (OS_FLAG_NODE *)0) {
  827.             pnode_next->OSFlagNodePrev = (OS_FLAG_NODE *)0;     /*      Link new 1st node PREV to NULL */
  828.         }
  829.     } else {                                                    /* No,  A node somewhere in the list   */
  830.         pnode_prev->OSFlagNodeNext = pnode_next;                /*      Link around the node to unlink */
  831.         if (pnode_next != (OS_FLAG_NODE *)0) {                  /*      Was this the LAST node?        */
  832.             pnode_next->OSFlagNodePrev = pnode_prev;            /*      No, Link around current node   */
  833.         }
  834.     }
  835. #if OS_TASK_DEL_EN > 0
  836.     ptcb                = (OS_TCB *)pnode->OSFlagNodeTCB;
  837.     ptcb->OSTCBFlagNode = (OS_FLAG_NODE *)0;
  838. #endif
  839. }
  840. #endif