os_mbox.c
上传用户:yj_qqy
上传日期:2017-01-28
资源大小:2911k
文件大小:30k
源码类别:

uCOS

开发平台:

C/C++

  1. /*
  2. *********************************************************************************************************
  3. *                                                uC/OS-II
  4. *                                          The Real-Time Kernel
  5. *                                       MESSAGE MAILBOX MANAGEMENT
  6. *
  7. *                              (c) Copyright 1992-2009, Micrium, Weston, FL
  8. *                                           All Rights Reserved
  9. *
  10. * File    : OS_MBOX.C
  11. * By      : Jean J. Labrosse
  12. * Version : V2.88
  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. #if OS_MBOX_EN > 0
  27. /*
  28. *********************************************************************************************************
  29. *                                     ACCEPT MESSAGE FROM MAILBOX
  30. *
  31. * Description: This function checks the mailbox to see if a message is available.  Unlike OSMboxPend(),
  32. *              OSMboxAccept() does not suspend the calling task if a message is not available.
  33. *
  34. * Arguments  : pevent        is a pointer to the event control block
  35. *
  36. * Returns    : != (void *)0  is the message in the mailbox if one is available.  The mailbox is cleared
  37. *                            so the next time OSMboxAccept() is called, the mailbox will be empty.
  38. *              == (void *)0  if the mailbox is empty or,
  39. *                            if 'pevent' is a NULL pointer or,
  40. *                            if you didn't pass the proper event pointer.
  41. *********************************************************************************************************
  42. */
  43. #if OS_MBOX_ACCEPT_EN > 0
  44. void  *OSMboxAccept (OS_EVENT *pevent)
  45. {
  46.     void      *pmsg;
  47. #if OS_CRITICAL_METHOD == 3                               /* Allocate storage for CPU status register  */
  48.     OS_CPU_SR  cpu_sr = 0;
  49. #endif
  50. #if OS_ARG_CHK_EN > 0
  51.     if (pevent == (OS_EVENT *)0) {                        /* Validate 'pevent'                         */
  52.         return ((void *)0);
  53.     }
  54. #endif
  55.     if (pevent->OSEventType != OS_EVENT_TYPE_MBOX) {      /* Validate event block type                 */
  56.         return ((void *)0);
  57.     }
  58.     OS_ENTER_CRITICAL();
  59.     pmsg               = pevent->OSEventPtr;
  60.     pevent->OSEventPtr = (void *)0;                       /* Clear the mailbox                         */
  61.     OS_EXIT_CRITICAL();
  62.     return (pmsg);                                        /* Return the message received (or NULL)     */
  63. }
  64. #endif
  65. /*$PAGE*/
  66. /*
  67. *********************************************************************************************************
  68. *                                        CREATE A MESSAGE MAILBOX
  69. *
  70. * Description: This function creates a message mailbox if free event control blocks are available.
  71. *
  72. * Arguments  : pmsg          is a pointer to a message that you wish to deposit in the mailbox.  If
  73. *                            you set this value to the NULL pointer (i.e. (void *)0) then the mailbox
  74. *                            will be considered empty.
  75. *
  76. * Returns    : != (OS_EVENT *)0  is a pointer to the event control clock (OS_EVENT) associated with the
  77. *                                created mailbox
  78. *              == (OS_EVENT *)0  if no event control blocks were available
  79. *********************************************************************************************************
  80. */
  81. OS_EVENT  *OSMboxCreate (void *pmsg)
  82. {
  83.     OS_EVENT  *pevent;
  84. #if OS_CRITICAL_METHOD == 3                      /* Allocate storage for CPU status register           */
  85.     OS_CPU_SR  cpu_sr = 0;
  86. #endif
  87.     if (OSIntNesting > 0) {                      /* See if called from ISR ...                         */
  88.         return ((OS_EVENT *)0);                  /* ... can't CREATE from an ISR                       */
  89.     }
  90.     OS_ENTER_CRITICAL();
  91.     pevent = OSEventFreeList;                    /* Get next free event control block                  */
  92.     if (OSEventFreeList != (OS_EVENT *)0) {      /* See if pool of free ECB pool was empty             */
  93.         OSEventFreeList = (OS_EVENT *)OSEventFreeList->OSEventPtr;
  94.     }
  95.     OS_EXIT_CRITICAL();
  96.     if (pevent != (OS_EVENT *)0) {
  97.         pevent->OSEventType    = OS_EVENT_TYPE_MBOX;
  98.         pevent->OSEventCnt     = 0;
  99.         pevent->OSEventPtr     = pmsg;           /* Deposit message in event control block             */
  100. #if OS_EVENT_NAME_EN > 0
  101.         pevent->OSEventName    = "?";            /* Unknown name                                       */
  102. #endif
  103.         OS_EventWaitListInit(pevent);
  104.     }
  105.     return (pevent);                             /* Return pointer to event control block              */
  106. }
  107. /*$PAGE*/
  108. /*
  109. *********************************************************************************************************
  110. *                                         DELETE A MAIBOX
  111. *
  112. * Description: This function deletes a mailbox and readies all tasks pending on the mailbox.
  113. *
  114. * Arguments  : pevent        is a pointer to the event control block associated with the desired
  115. *                            mailbox.
  116. *
  117. *              opt           determines delete options as follows:
  118. *                            opt == OS_DEL_NO_PEND   Delete the mailbox ONLY if no task pending
  119. *                            opt == OS_DEL_ALWAYS    Deletes the mailbox even if tasks are waiting.
  120. *                                                    In this case, all the tasks pending will be readied.
  121. *
  122. *              perr          is a pointer to an error code that can contain one of the following values:
  123. *                            OS_ERR_NONE             The call was successful and the mailbox was deleted
  124. *                            OS_ERR_DEL_ISR          If you attempted to delete the mailbox from an ISR
  125. *                            OS_ERR_INVALID_OPT      An invalid option was specified
  126. *                            OS_ERR_TASK_WAITING     One or more tasks were waiting on the mailbox
  127. *                            OS_ERR_EVENT_TYPE       If you didn't pass a pointer to a mailbox
  128. *                            OS_ERR_PEVENT_NULL      If 'pevent' is a NULL pointer.
  129. *
  130. * Returns    : pevent        upon error
  131. *              (OS_EVENT *)0 if the mailbox was successfully deleted.
  132. *
  133. * Note(s)    : 1) This function must be used with care.  Tasks that would normally expect the presence of
  134. *                 the mailbox MUST check the return code of OSMboxPend().
  135. *              2) OSMboxAccept() callers will not know that the intended mailbox has been deleted!
  136. *              3) This call can potentially disable interrupts for a long time.  The interrupt disable
  137. *                 time is directly proportional to the number of tasks waiting on the mailbox.
  138. *              4) Because ALL tasks pending on the mailbox will be readied, you MUST be careful in
  139. *                 applications where the mailbox is used for mutual exclusion because the resource(s)
  140. *                 will no longer be guarded by the mailbox.
  141. *********************************************************************************************************
  142. */
  143. #if OS_MBOX_DEL_EN > 0
  144. OS_EVENT  *OSMboxDel (OS_EVENT  *pevent, 
  145.                       INT8U      opt, 
  146.                       INT8U     *perr)
  147. {
  148.     BOOLEAN    tasks_waiting;
  149.     OS_EVENT  *pevent_return;
  150. #if OS_CRITICAL_METHOD == 3                                /* Allocate storage for CPU status register */
  151.     OS_CPU_SR  cpu_sr = 0;
  152. #endif
  153. #if OS_ARG_CHK_EN > 0
  154.     if (perr == (INT8U *)0) {                              /* Validate 'perr'                          */
  155.         return (pevent);
  156.     }
  157.     if (pevent == (OS_EVENT *)0) {                         /* Validate 'pevent'                        */
  158.         *perr = OS_ERR_PEVENT_NULL;
  159.         return (pevent);
  160.     }
  161. #endif
  162.     if (pevent->OSEventType != OS_EVENT_TYPE_MBOX) {       /* Validate event block type                */
  163.         *perr = OS_ERR_EVENT_TYPE;
  164.         return (pevent);
  165.     }
  166.     if (OSIntNesting > 0) {                                /* See if called from ISR ...               */
  167.         *perr = OS_ERR_DEL_ISR;                            /* ... can't DELETE from an ISR             */
  168.         return (pevent);
  169.     }
  170.     OS_ENTER_CRITICAL();
  171.     if (pevent->OSEventGrp != 0) {                         /* See if any tasks waiting on mailbox      */
  172.         tasks_waiting = OS_TRUE;                           /* Yes                                      */
  173.     } else {
  174.         tasks_waiting = OS_FALSE;                          /* No                                       */
  175.     }
  176.     switch (opt) {
  177.         case OS_DEL_NO_PEND:                               /* Delete mailbox only if no task waiting   */
  178.              if (tasks_waiting == OS_FALSE) {
  179. #if OS_EVENT_NAME_EN > 0
  180.                  pevent->OSEventName = "?";                /* Unknown name                             */
  181. #endif
  182.                  pevent->OSEventType = OS_EVENT_TYPE_UNUSED;
  183.                  pevent->OSEventPtr  = OSEventFreeList;    /* Return Event Control Block to free list  */
  184.                  pevent->OSEventCnt  = 0;
  185.                  OSEventFreeList     = pevent;             /* Get next free event control block        */
  186.                  OS_EXIT_CRITICAL();
  187.                  *perr               = OS_ERR_NONE;
  188.                  pevent_return       = (OS_EVENT *)0;      /* Mailbox has been deleted                 */
  189.              } else {
  190.                  OS_EXIT_CRITICAL();
  191.                  *perr               = OS_ERR_TASK_WAITING;
  192.                  pevent_return       = pevent;
  193.              }
  194.              break;
  195.         case OS_DEL_ALWAYS:                                /* Always delete the mailbox                */
  196.              while (pevent->OSEventGrp != 0) {             /* Ready ALL tasks waiting for mailbox      */
  197.                  (void)OS_EventTaskRdy(pevent, (void *)0, OS_STAT_MBOX, OS_STAT_PEND_OK);
  198.              }
  199. #if OS_EVENT_NAME_EN > 0
  200.              pevent->OSEventName    = "?";                 /* Unknown name                             */
  201. #endif
  202.              pevent->OSEventType    = OS_EVENT_TYPE_UNUSED;
  203.              pevent->OSEventPtr     = OSEventFreeList;     /* Return Event Control Block to free list  */
  204.              pevent->OSEventCnt     = 0;
  205.              OSEventFreeList        = pevent;              /* Get next free event control block        */
  206.              OS_EXIT_CRITICAL();
  207.              if (tasks_waiting == OS_TRUE) {               /* Reschedule only if task(s) were waiting  */
  208.                  OS_Sched();                               /* Find highest priority task ready to run  */
  209.              }
  210.              *perr         = OS_ERR_NONE;
  211.              pevent_return = (OS_EVENT *)0;                /* Mailbox has been deleted                 */
  212.              break;
  213.         default:
  214.              OS_EXIT_CRITICAL();
  215.              *perr         = OS_ERR_INVALID_OPT;
  216.              pevent_return = pevent;
  217.              break;
  218.     }
  219.     return (pevent_return);
  220. }
  221. #endif
  222. /*$PAGE*/
  223. /*
  224. *********************************************************************************************************
  225. *                                      PEND ON MAILBOX FOR A MESSAGE
  226. *
  227. * Description: This function waits for a message to be sent to a mailbox
  228. *
  229. * Arguments  : pevent        is a pointer to the event control block associated with the desired mailbox
  230. *
  231. *              timeout       is an optional timeout period (in clock ticks).  If non-zero, your task will
  232. *                            wait for a message to arrive at the mailbox up to the amount of time
  233. *                            specified by this argument.  If you specify 0, however, your task will wait
  234. *                            forever at the specified mailbox or, until a message arrives.
  235. *
  236. *              perr          is a pointer to where an error message will be deposited.  Possible error
  237. *                            messages are:
  238. *
  239. *                            OS_ERR_NONE         The call was successful and your task received a
  240. *                                                message.
  241. *                            OS_ERR_TIMEOUT      A message was not received within the specified 'timeout'.
  242. *                            OS_ERR_PEND_ABORT   The wait on the mailbox was aborted.
  243. *                            OS_ERR_EVENT_TYPE   Invalid event type
  244. *                            OS_ERR_PEND_ISR     If you called this function from an ISR and the result
  245. *                                                would lead to a suspension.
  246. *                            OS_ERR_PEVENT_NULL  If 'pevent' is a NULL pointer
  247. *                            OS_ERR_PEND_LOCKED  If you called this function when the scheduler is locked
  248. *
  249. * Returns    : != (void *)0  is a pointer to the message received
  250. *              == (void *)0  if no message was received or,
  251. *                            if 'pevent' is a NULL pointer or,
  252. *                            if you didn't pass the proper pointer to the event control block.
  253. *********************************************************************************************************
  254. */
  255. /*$PAGE*/
  256. void  *OSMboxPend (OS_EVENT  *pevent, 
  257.                    INT32U     timeout, 
  258.                    INT8U     *perr)
  259. {
  260.     void      *pmsg;
  261. #if OS_CRITICAL_METHOD == 3                           /* Allocate storage for CPU status register      */
  262.     OS_CPU_SR  cpu_sr = 0;
  263. #endif
  264. #if OS_ARG_CHK_EN > 0
  265.     if (perr == (INT8U *)0) {                         /* Validate 'perr'                               */
  266.         return ((void *)0);
  267.     }
  268.     if (pevent == (OS_EVENT *)0) {                    /* Validate 'pevent'                             */
  269.         *perr = OS_ERR_PEVENT_NULL;
  270.         return ((void *)0);
  271.     }
  272. #endif
  273.     if (pevent->OSEventType != OS_EVENT_TYPE_MBOX) {  /* Validate event block type                     */
  274.         *perr = OS_ERR_EVENT_TYPE;
  275.         return ((void *)0);
  276.     }
  277.     if (OSIntNesting > 0) {                           /* See if called from ISR ...                    */
  278.         *perr = OS_ERR_PEND_ISR;                      /* ... can't PEND from an ISR                    */
  279.         return ((void *)0);
  280.     }
  281.     if (OSLockNesting > 0) {                          /* See if called with scheduler locked ...       */
  282.         *perr = OS_ERR_PEND_LOCKED;                   /* ... can't PEND when locked                    */
  283.         return ((void *)0);
  284.     }
  285.     OS_ENTER_CRITICAL();
  286.     pmsg = pevent->OSEventPtr;
  287.     if (pmsg != (void *)0) {                          /* See if there is already a message             */
  288.         pevent->OSEventPtr = (void *)0;               /* Clear the mailbox                             */
  289.         OS_EXIT_CRITICAL();
  290.         *perr = OS_ERR_NONE;
  291.         return (pmsg);                                /* Return the message received (or NULL)         */
  292.     }
  293.     OSTCBCur->OSTCBStat     |= OS_STAT_MBOX;          /* Message not available, task will pend         */
  294.     OSTCBCur->OSTCBStatPend  = OS_STAT_PEND_OK;
  295.     OSTCBCur->OSTCBDly       = timeout;               /* Load timeout in TCB                           */
  296.     OS_EventTaskWait(pevent);                         /* Suspend task until event or timeout occurs    */
  297.     OS_EXIT_CRITICAL();
  298.     OS_Sched();                                       /* Find next highest priority task ready to run  */
  299.     OS_ENTER_CRITICAL();
  300.     switch (OSTCBCur->OSTCBStatPend) {                /* See if we timed-out or aborted                */
  301.         case OS_STAT_PEND_OK:
  302.              pmsg =  OSTCBCur->OSTCBMsg;
  303.             *perr =  OS_ERR_NONE;
  304.              break;
  305.         case OS_STAT_PEND_ABORT:
  306.              pmsg = (void *)0;
  307.             *perr =  OS_ERR_PEND_ABORT;               /* Indicate that we aborted                      */
  308.              break;
  309.         case OS_STAT_PEND_TO:
  310.         default:
  311.              OS_EventTaskRemove(OSTCBCur, pevent);
  312.              pmsg = (void *)0;
  313.             *perr =  OS_ERR_TIMEOUT;                  /* Indicate that we didn't get event within TO   */
  314.              break;
  315.     }
  316.     OSTCBCur->OSTCBStat          =  OS_STAT_RDY;      /* Set   task  status to ready                   */
  317.     OSTCBCur->OSTCBStatPend      =  OS_STAT_PEND_OK;  /* Clear pend  status                            */
  318.     OSTCBCur->OSTCBEventPtr      = (OS_EVENT  *)0;    /* Clear event pointers                          */
  319. #if (OS_EVENT_MULTI_EN > 0)
  320.     OSTCBCur->OSTCBEventMultiPtr = (OS_EVENT **)0;
  321. #endif
  322.     OSTCBCur->OSTCBMsg           = (void      *)0;    /* Clear  received message                       */
  323.     OS_EXIT_CRITICAL();
  324.     return (pmsg);                                    /* Return received message                       */
  325. }
  326. /*$PAGE*/
  327. /*
  328. *********************************************************************************************************
  329. *                                      ABORT WAITING ON A MESSAGE MAILBOX
  330. *
  331. * Description: This function aborts & readies any tasks currently waiting on a mailbox.  This function 
  332. *              should be used to fault-abort the wait on the mailbox, rather than to normally signal
  333. *              the mailbox via OSMboxPost() or OSMboxPostOpt().
  334. *
  335. * Arguments  : pevent        is a pointer to the event control block associated with the desired mailbox.
  336. *
  337. *              opt           determines the type of ABORT performed:
  338. *                            OS_PEND_OPT_NONE         ABORT wait for a single task (HPT) waiting on the
  339. *                                                     mailbox
  340. *                            OS_PEND_OPT_BROADCAST    ABORT wait for ALL tasks that are  waiting on the
  341. *                                                     mailbox
  342. *
  343. *              perr          is a pointer to where an error message will be deposited.  Possible error
  344. *                            messages are:
  345. *
  346. *                            OS_ERR_NONE         No tasks were     waiting on the mailbox.
  347. *                            OS_ERR_PEND_ABORT   At least one task waiting on the mailbox was readied
  348. *                                                and informed of the aborted wait; check return value 
  349. *                                                for the number of tasks whose wait on the mailbox 
  350. *                                                was aborted.
  351. *                            OS_ERR_EVENT_TYPE   If you didn't pass a pointer to a mailbox.
  352. *                            OS_ERR_PEVENT_NULL  If 'pevent' is a NULL pointer.
  353. *
  354. * Returns    : == 0          if no tasks were waiting on the mailbox, or upon error.
  355. *              >  0          if one or more tasks waiting on the mailbox are now readied and informed.
  356. *********************************************************************************************************
  357. */
  358. #if OS_MBOX_PEND_ABORT_EN > 0
  359. INT8U  OSMboxPendAbort (OS_EVENT  *pevent, 
  360.                         INT8U      opt, 
  361.                         INT8U     *perr)
  362. {
  363.     INT8U      nbr_tasks;
  364. #if OS_CRITICAL_METHOD == 3                                /* Allocate storage for CPU status register */
  365.     OS_CPU_SR  cpu_sr = 0;
  366. #endif
  367. #if OS_ARG_CHK_EN > 0
  368.     if (perr == (INT8U *)0) {                              /* Validate 'perr'                          */
  369.         return (0);
  370.     }
  371.     if (pevent == (OS_EVENT *)0) {                         /* Validate 'pevent'                        */
  372.         *perr = OS_ERR_PEVENT_NULL;
  373.         return (0);
  374.     }
  375. #endif
  376.     if (pevent->OSEventType != OS_EVENT_TYPE_MBOX) {       /* Validate event block type                */
  377.         *perr = OS_ERR_EVENT_TYPE;
  378.         return (0);
  379.     }
  380.     OS_ENTER_CRITICAL();
  381.     if (pevent->OSEventGrp != 0) {                         /* See if any task waiting on mailbox?      */
  382.         nbr_tasks = 0;
  383.         switch (opt) {
  384.             case OS_PEND_OPT_BROADCAST:                    /* Do we need to abort ALL waiting tasks?   */
  385.                  while (pevent->OSEventGrp != 0) {         /* Yes, ready ALL tasks waiting on mailbox  */
  386.                      (void)OS_EventTaskRdy(pevent, (void *)0, OS_STAT_MBOX, OS_STAT_PEND_ABORT);
  387.                      nbr_tasks++;
  388.                  }
  389.                  break;
  390.              
  391.             case OS_PEND_OPT_NONE:
  392.             default:                                       /* No,  ready HPT       waiting on mailbox  */
  393.                  (void)OS_EventTaskRdy(pevent, (void *)0, OS_STAT_MBOX, OS_STAT_PEND_ABORT);
  394.                  nbr_tasks++;
  395.                  break;
  396.         }
  397.         OS_EXIT_CRITICAL();
  398.         OS_Sched();                                        /* Find HPT ready to run                    */
  399.         *perr = OS_ERR_PEND_ABORT;
  400.         return (nbr_tasks);
  401.     }
  402.     OS_EXIT_CRITICAL();
  403.     *perr = OS_ERR_NONE;
  404.     return (0);                                            /* No tasks waiting on mailbox              */
  405. }
  406. #endif
  407. /*$PAGE*/
  408. /*
  409. *********************************************************************************************************
  410. *                                       POST MESSAGE TO A MAILBOX
  411. *
  412. * Description: This function sends a message to a mailbox
  413. *
  414. * Arguments  : pevent        is a pointer to the event control block associated with the desired mailbox
  415. *
  416. *              pmsg          is a pointer to the message to send.  You MUST NOT send a NULL pointer.
  417. *
  418. * Returns    : OS_ERR_NONE          The call was successful and the message was sent
  419. *              OS_ERR_MBOX_FULL     If the mailbox already contains a message.  You can can only send one
  420. *                                   message at a time and thus, the message MUST be consumed before you
  421. *                                   are allowed to send another one.
  422. *              OS_ERR_EVENT_TYPE    If you are attempting to post to a non mailbox.
  423. *              OS_ERR_PEVENT_NULL   If 'pevent' is a NULL pointer
  424. *              OS_ERR_POST_NULL_PTR If you are attempting to post a NULL pointer
  425. *
  426. * Note(s)    : 1) HPT means Highest Priority Task
  427. *********************************************************************************************************
  428. */
  429. #if OS_MBOX_POST_EN > 0
  430. INT8U  OSMboxPost (OS_EVENT  *pevent, 
  431.                    void      *pmsg)
  432. {
  433. #if OS_CRITICAL_METHOD == 3                           /* Allocate storage for CPU status register      */
  434.     OS_CPU_SR  cpu_sr = 0;
  435. #endif
  436. #if OS_ARG_CHK_EN > 0
  437.     if (pevent == (OS_EVENT *)0) {                    /* Validate 'pevent'                             */
  438.         return (OS_ERR_PEVENT_NULL);
  439.     }
  440.     if (pmsg == (void *)0) {                          /* Make sure we are not posting a NULL pointer   */
  441.         return (OS_ERR_POST_NULL_PTR);
  442.     }
  443. #endif
  444.     if (pevent->OSEventType != OS_EVENT_TYPE_MBOX) {  /* Validate event block type                     */
  445.         return (OS_ERR_EVENT_TYPE);
  446.     }
  447.     OS_ENTER_CRITICAL();
  448.     if (pevent->OSEventGrp != 0) {                    /* See if any task pending on mailbox            */
  449.                                                       /* Ready HPT waiting on event                    */
  450.         (void)OS_EventTaskRdy(pevent, pmsg, OS_STAT_MBOX, OS_STAT_PEND_OK);
  451.         OS_EXIT_CRITICAL();
  452.         OS_Sched();                                   /* Find highest priority task ready to run       */
  453.         return (OS_ERR_NONE);
  454.     }
  455.     if (pevent->OSEventPtr != (void *)0) {            /* Make sure mailbox doesn't already have a msg  */
  456.         OS_EXIT_CRITICAL();
  457.         return (OS_ERR_MBOX_FULL);
  458.     }
  459.     pevent->OSEventPtr = pmsg;                        /* Place message in mailbox                      */
  460.     OS_EXIT_CRITICAL();
  461.     return (OS_ERR_NONE);
  462. }
  463. #endif
  464. /*$PAGE*/
  465. /*
  466. *********************************************************************************************************
  467. *                                       POST MESSAGE TO A MAILBOX
  468. *
  469. * Description: This function sends a message to a mailbox
  470. *
  471. * Arguments  : pevent        is a pointer to the event control block associated with the desired mailbox
  472. *
  473. *              pmsg          is a pointer to the message to send.  You MUST NOT send a NULL pointer.
  474. *
  475. *              opt           determines the type of POST performed:
  476. *                            OS_POST_OPT_NONE         POST to a single waiting task
  477. *                                                     (Identical to OSMboxPost())
  478. *                            OS_POST_OPT_BROADCAST    POST to ALL tasks that are waiting on the mailbox
  479. *
  480. *                            OS_POST_OPT_NO_SCHED     Indicates that the scheduler will NOT be invoked
  481. *
  482. * Returns    : OS_ERR_NONE          The call was successful and the message was sent
  483. *              OS_ERR_MBOX_FULL     If the mailbox already contains a message.  You can can only send one
  484. *                                   message at a time and thus, the message MUST be consumed before you
  485. *                                   are allowed to send another one.
  486. *              OS_ERR_EVENT_TYPE    If you are attempting to post to a non mailbox.
  487. *              OS_ERR_PEVENT_NULL   If 'pevent' is a NULL pointer
  488. *              OS_ERR_POST_NULL_PTR If you are attempting to post a NULL pointer
  489. *
  490. * Note(s)    : 1) HPT means Highest Priority Task
  491. *
  492. * Warning    : Interrupts can be disabled for a long time if you do a 'broadcast'.  In fact, the
  493. *              interrupt disable time is proportional to the number of tasks waiting on the mailbox.
  494. *********************************************************************************************************
  495. */
  496. #if OS_MBOX_POST_OPT_EN > 0
  497. INT8U  OSMboxPostOpt (OS_EVENT  *pevent, 
  498.                       void      *pmsg, 
  499.                       INT8U      opt)
  500. {
  501. #if OS_CRITICAL_METHOD == 3                           /* Allocate storage for CPU status register      */
  502.     OS_CPU_SR  cpu_sr = 0;
  503. #endif
  504. #if OS_ARG_CHK_EN > 0
  505.     if (pevent == (OS_EVENT *)0) {                    /* Validate 'pevent'                             */
  506.         return (OS_ERR_PEVENT_NULL);
  507.     }
  508.     if (pmsg == (void *)0) {                          /* Make sure we are not posting a NULL pointer   */
  509.         return (OS_ERR_POST_NULL_PTR);
  510.     }
  511. #endif
  512.     if (pevent->OSEventType != OS_EVENT_TYPE_MBOX) {  /* Validate event block type                     */
  513.         return (OS_ERR_EVENT_TYPE);
  514.     }
  515.     OS_ENTER_CRITICAL();
  516.     if (pevent->OSEventGrp != 0) {                    /* See if any task pending on mailbox            */
  517.         if ((opt & OS_POST_OPT_BROADCAST) != 0x00) {  /* Do we need to post msg to ALL waiting tasks ? */
  518.             while (pevent->OSEventGrp != 0) {         /* Yes, Post to ALL tasks waiting on mailbox     */
  519.                 (void)OS_EventTaskRdy(pevent, pmsg, OS_STAT_MBOX, OS_STAT_PEND_OK);
  520.             }
  521.         } else {                                      /* No,  Post to HPT waiting on mbox              */
  522.             (void)OS_EventTaskRdy(pevent, pmsg, OS_STAT_MBOX, OS_STAT_PEND_OK);
  523.         }
  524.         OS_EXIT_CRITICAL();
  525.         if ((opt & OS_POST_OPT_NO_SCHED) == 0) {   /* See if scheduler needs to be invoked          */
  526.             OS_Sched();                               /* Find HPT ready to run                         */
  527.         }
  528.         return (OS_ERR_NONE);
  529.     }
  530.     if (pevent->OSEventPtr != (void *)0) {            /* Make sure mailbox doesn't already have a msg  */
  531.         OS_EXIT_CRITICAL();
  532.         return (OS_ERR_MBOX_FULL);
  533.     }
  534.     pevent->OSEventPtr = pmsg;                        /* Place message in mailbox                      */
  535.     OS_EXIT_CRITICAL();
  536.     return (OS_ERR_NONE);
  537. }
  538. #endif
  539. /*$PAGE*/
  540. /*
  541. *********************************************************************************************************
  542. *                                        QUERY A MESSAGE MAILBOX
  543. *
  544. * Description: This function obtains information about a message mailbox.
  545. *
  546. * Arguments  : pevent        is a pointer to the event control block associated with the desired mailbox
  547. *
  548. *              p_mbox_data   is a pointer to a structure that will contain information about the message
  549. *                            mailbox.
  550. *
  551. * Returns    : OS_ERR_NONE         The call was successful and the message was sent
  552. *              OS_ERR_EVENT_TYPE   If you are attempting to obtain data from a non mailbox.
  553. *              OS_ERR_PEVENT_NULL  If 'pevent'      is a NULL pointer
  554. *              OS_ERR_PDATA_NULL   If 'p_mbox_data' is a NULL pointer
  555. *********************************************************************************************************
  556. */
  557. #if OS_MBOX_QUERY_EN > 0
  558. INT8U  OSMboxQuery (OS_EVENT      *pevent, 
  559.                     OS_MBOX_DATA  *p_mbox_data)
  560. {
  561.     INT8U      i;
  562. #if OS_LOWEST_PRIO <= 63
  563.     INT8U     *psrc;
  564.     INT8U     *pdest;
  565. #else
  566.     INT16U    *psrc;
  567.     INT16U    *pdest;
  568. #endif
  569. #if OS_CRITICAL_METHOD == 3                                /* Allocate storage for CPU status register */
  570.     OS_CPU_SR  cpu_sr = 0;
  571. #endif
  572. #if OS_ARG_CHK_EN > 0
  573.     if (pevent == (OS_EVENT *)0) {                         /* Validate 'pevent'                        */
  574.         return (OS_ERR_PEVENT_NULL);
  575.     }
  576.     if (p_mbox_data == (OS_MBOX_DATA *)0) {                /* Validate 'p_mbox_data'                   */
  577.         return (OS_ERR_PDATA_NULL);
  578.     }
  579. #endif
  580.     if (pevent->OSEventType != OS_EVENT_TYPE_MBOX) {       /* Validate event block type                */
  581.         return (OS_ERR_EVENT_TYPE);
  582.     }
  583.     OS_ENTER_CRITICAL();
  584.     p_mbox_data->OSEventGrp = pevent->OSEventGrp;          /* Copy message mailbox wait list           */
  585.     psrc                    = &pevent->OSEventTbl[0];
  586.     pdest                   = &p_mbox_data->OSEventTbl[0];
  587.     for (i = 0; i < OS_EVENT_TBL_SIZE; i++) {
  588.         *pdest++ = *psrc++;
  589.     }
  590.     p_mbox_data->OSMsg = pevent->OSEventPtr;               /* Get message from mailbox                 */
  591.     OS_EXIT_CRITICAL();
  592.     return (OS_ERR_NONE);
  593. }
  594. #endif                                                     /* OS_MBOX_QUERY_EN                         */
  595. #endif                                                     /* OS_MBOX_EN                               */