📄 os_core.lst
字号:
428 */
429
430 #if OS_TASK_DEL_EN > 0
431 void OS_Dummy (void)
432 {
433 1 }
434 #endif
435
436 /*$PAGE*/
437 /*
438 *********************************************************************************************************
439 * MAKE TASK READY TO RUN BASED ON EVENT OCCURING
440 *
441 * Description: This function is called by other uC/OS-II services and is used to ready a task that was
442 * waiting for an event to occur.
443 *
444 * Arguments : pevent is a pointer to the event control block corresponding to the event.
445 *
446 * msg is a pointer to a message. This pointer is used by message oriented services
447 * such as MAILBOXEs and QUEUEs. The pointer is not used when called by other
448 * service functions.
449 *
450 * msk is a mask that is used to clear the status byte of the TCB. For example,
451 * OSSemPost() will pass OS_STAT_SEM, OSMboxPost() will pass OS_STAT_MBOX etc.
452 *
453 * Returns : none
454 *
455 * Note : This function is INTERNAL to uC/OS-II and your application should not call it.
456 *********************************************************************************************************
457 */
458 #if OS_EVENT_EN > 0
INT8U OS_EventTaskRdy (OS_EVENT *pevent, void *msg, INT8U msk)
{
OS_TCB *ptcb;
INT8U x;
INT8U y;
INT8U bitx;
INT8U bity;
INT8U prio;
y = OSUnMapTbl[pevent->OSEventGrp]; /* Find highest prio. task waiting for message */
bity = OSMapTbl[y];
x = OSUnMapTbl[pevent->OSEventTbl[y]];
bitx = OSMapTbl[x];
prio = (INT8U)((y << 3) + x); /* Find priority of task getting the msg */
if ((pevent->OSEventTbl[y] &= ~bitx) == 0x00) { /* Remove this task from the waiting list */
pevent->OSEventGrp &= ~bity; /* Clr group bit if this was only task pending */
}
ptcb = OSTCBPrioTbl[prio]; /* Point to this task's OS_TCB */
C51 COMPILER V9.01 OS_CORE 10/31/2012 17:19:07 PAGE 9
ptcb->OSTCBDly = 0; /* Prevent OSTimeTick() from readying task */
ptcb->OSTCBEventPtr = (OS_EVENT *)0; /* Unlink ECB from this task */
#if ((OS_Q_EN > 0) && (OS_MAX_QS > 0)) || (OS_MBOX_EN > 0)
ptcb->OSTCBMsg = msg; /* Send message directly to waiting task */
#else
msg = msg; /* Prevent compiler warning if not used */
#endif
ptcb->OSTCBStat &= ~msk; /* Clear bit associated with event type */
if (ptcb->OSTCBStat == OS_STAT_RDY) { /* See if task is ready (could be susp'd) */
OSRdyGrp |= bity; /* Put task in the ready to run list */
OSRdyTbl[y] |= bitx;
}
return (prio);
}
#endif
493 /*$PAGE*/
494 /*
495 *********************************************************************************************************
496 * MAKE TASK WAIT FOR EVENT TO OCCUR
497 *
498 * Description: This function is called by other uC/OS-II services to suspend a task because an event has
499 * not occurred.
500 *
501 * Arguments : pevent is a pointer to the event control block for which the task will be waiting for.
502 *
503 * Returns : none
504 *
505 * Note : This function is INTERNAL to uC/OS-II and your application should not call it.
506 *********************************************************************************************************
507 */
508 #if OS_EVENT_EN > 0
void OS_EventTaskWait (OS_EVENT *pevent)
{
OSTCBCur->OSTCBEventPtr = pevent; /* Store pointer to event control block in TCB */
if ((OSRdyTbl[OSTCBCur->OSTCBY] &= ~OSTCBCur->OSTCBBitX) == 0x00) { /* Task no longer ready */
OSRdyGrp &= ~OSTCBCur->OSTCBBitY; /* Clear event grp bit if this was only task pending */
}
pevent->OSEventTbl[OSTCBCur->OSTCBY] |= OSTCBCur->OSTCBBitX; /* Put task in waiting list */
pevent->OSEventGrp |= OSTCBCur->OSTCBBitY;
}
#endif
519 /*$PAGE*/
520 /*
521 *********************************************************************************************************
522 * MAKE TASK READY TO RUN BASED ON EVENT TIMEOUT
523 *
524 * Description: This function is called by other uC/OS-II services to make a task ready to run because a
525 * timeout occurred.
526 *
527 * Arguments : pevent is a pointer to the event control block which is readying a task.
528 *
529 * Returns : none
530 *
531 * Note : This function is INTERNAL to uC/OS-II and your application should not call it.
532 *********************************************************************************************************
533 */
534 #if OS_EVENT_EN > 0
void OS_EventTO (OS_EVENT *pevent)
{
if ((pevent->OSEventTbl[OSTCBCur->OSTCBY] &= ~OSTCBCur->OSTCBBitX) == 0x00) {
pevent->OSEventGrp &= ~OSTCBCur->OSTCBBitY;
}
C51 COMPILER V9.01 OS_CORE 10/31/2012 17:19:07 PAGE 10
OSTCBCur->OSTCBStat = OS_STAT_RDY; /* Set status to ready */
OSTCBCur->OSTCBEventPtr = (OS_EVENT *)0; /* No longer waiting for event */
}
#endif
544 /*$PAGE*/
545 /*
546 *********************************************************************************************************
547 * INITIALIZE EVENT CONTROL BLOCK'S WAIT LIST
548 *
549 * Description: This function is called by other uC/OS-II services to initialize the event wait list.
550 *
551 * Arguments : pevent is a pointer to the event control block allocated to the event.
552 *
553 * Returns : none
554 *
555 * Note : This function is INTERNAL to uC/OS-II and your application should not call it.
556 *********************************************************************************************************
557 */
558 #if ((OS_Q_EN > 0) && (OS_MAX_QS > 0)) || (OS_MBOX_EN > 0) || (OS_SEM_EN > 0) || (OS_MUTEX_EN > 0)
void OS_EventWaitListInit (OS_EVENT *pevent)
{
INT8U *ptbl;
pevent->OSEventGrp = 0x00; /* No task waiting on event */
ptbl = &pevent->OSEventTbl[0];
#if OS_EVENT_TBL_SIZE > 0
*ptbl++ = 0x00;
#endif
#if OS_EVENT_TBL_SIZE > 1
*ptbl++ = 0x00;
#endif
#if OS_EVENT_TBL_SIZE > 2
*ptbl++ = 0x00;
#endif
#if OS_EVENT_TBL_SIZE > 3
*ptbl++ = 0x00;
#endif
#if OS_EVENT_TBL_SIZE > 4
*ptbl++ = 0x00;
#endif
#if OS_EVENT_TBL_SIZE > 5
*ptbl++ = 0x00;
#endif
#if OS_EVENT_TBL_SIZE > 6
*ptbl++ = 0x00;
#endif
#if OS_EVENT_TBL_SIZE > 7
*ptbl = 0x00;
#endif
}
#endif
600 /*$PAGE*/
601 /*
C51 COMPILER V9.01 OS_CORE 10/31/2012 17:19:07 PAGE 11
602 *********************************************************************************************************
603 * INITIALIZATION
604 * INITIALIZE THE FREE LIST OF EVENT CONTROL BLOCKS
605 *
606 * Description: This function is called by OSInit() to initialize the free list of event control blocks.
607 *
608 * Arguments : none
609 *
610 * Returns : none
611 *********************************************************************************************************
612 */
613
614 static void OS_InitEventList (void)
615 {
616 1 #if (OS_EVENT_EN > 0) && (OS_MAX_EVENTS > 0)
#if (OS_MAX_EVENTS > 1)
INT16U i;
OS_EVENT *pevent1;
OS_EVENT *pevent2;
pevent1 = &OSEventTbl[0];
pevent2 = &OSEventTbl[1];
for (i = 0; i < (OS_MAX_EVENTS - 1); i++) { /* Init. list of free EVENT control block
-s */
pevent1->OSEventType = OS_EVENT_TYPE_UNUSED;
pevent1->OSEventPtr = pevent2;
pevent1++;
pevent2++;
}
pevent1->OSEventType = OS_EVENT_TYPE_UNUSED;
pevent1->OSEventPtr = (OS_EVENT *)0;
OSEventFreeList = &OSEventTbl[0];
#else
OSEventFreeList = &OSEventTbl[0]; /* Only have ONE event control block
- */
OSEventFreeList->OSEventType = OS_EVENT_TYPE_UNUSED;
OSEventFreeList->OSEventPtr = (OS_EVENT *)0;
#endif
#endif
640 1 }
641 /*$PAGE*/
642 /*
643 *********************************************************************************************************
644 * INITIALIZATION
645 * INITIALIZE MISCELLANEOUS VARIABLES
646 *
647 * Description: This function is called by OSInit() to initialize miscellaneous variables.
648 *
649 * Arguments : none
650 *
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -