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

uCOS

开发平台:

Others

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