mirror of
https://github.com/silenty4ng/uv-k5-firmware-chinese-lts
synced 2025-01-30 14:14:31 +00:00
182 lines
5.4 KiB
C
182 lines
5.4 KiB
C
|
/*----------------------------------------------------------------------------
|
||
|
* CMSIS-RTOS - RTX
|
||
|
*----------------------------------------------------------------------------
|
||
|
* Name: RT_EVENT.C
|
||
|
* Purpose: Implements waits and wake-ups for event flags
|
||
|
* Rev.: V4.79
|
||
|
*----------------------------------------------------------------------------
|
||
|
*
|
||
|
* Copyright (c) 1999-2009 KEIL, 2009-2017 ARM Germany GmbH. All rights reserved.
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the License); you may
|
||
|
* not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an AS IS BASIS, WITHOUT
|
||
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*---------------------------------------------------------------------------*/
|
||
|
|
||
|
#include "rt_TypeDef.h"
|
||
|
#include "RTX_Config.h"
|
||
|
#include "rt_System.h"
|
||
|
#include "rt_Event.h"
|
||
|
#include "rt_List.h"
|
||
|
#include "rt_Task.h"
|
||
|
#include "rt_HAL_CM.h"
|
||
|
|
||
|
|
||
|
/*----------------------------------------------------------------------------
|
||
|
* Functions
|
||
|
*---------------------------------------------------------------------------*/
|
||
|
|
||
|
|
||
|
/*--------------------------- rt_evt_wait -----------------------------------*/
|
||
|
|
||
|
OS_RESULT rt_evt_wait (U16 wait_flags, U16 timeout, BOOL and_wait) {
|
||
|
/* Wait for one or more event flags with optional time-out. */
|
||
|
/* "wait_flags" identifies the flags to wait for. */
|
||
|
/* "timeout" is the time-out limit in system ticks (0xffff if no time-out) */
|
||
|
/* "and_wait" specifies the AND-ing of "wait_flags" as condition to be met */
|
||
|
/* to complete the wait. (OR-ing if set to 0). */
|
||
|
U32 block_state;
|
||
|
|
||
|
if (and_wait) {
|
||
|
/* Check for AND-connected events */
|
||
|
if ((os_tsk.run->events & wait_flags) == wait_flags) {
|
||
|
os_tsk.run->events &= ~wait_flags;
|
||
|
return (OS_R_EVT);
|
||
|
}
|
||
|
block_state = WAIT_AND;
|
||
|
}
|
||
|
else {
|
||
|
/* Check for OR-connected events */
|
||
|
if (os_tsk.run->events & wait_flags) {
|
||
|
os_tsk.run->waits = os_tsk.run->events & wait_flags;
|
||
|
os_tsk.run->events &= ~wait_flags;
|
||
|
return (OS_R_EVT);
|
||
|
}
|
||
|
block_state = WAIT_OR;
|
||
|
}
|
||
|
/* Task has to wait */
|
||
|
os_tsk.run->waits = wait_flags;
|
||
|
rt_block (timeout, (U8)block_state);
|
||
|
return (OS_R_TMO);
|
||
|
}
|
||
|
|
||
|
|
||
|
/*--------------------------- rt_evt_set ------------------------------------*/
|
||
|
|
||
|
void rt_evt_set (U16 event_flags, OS_TID task_id) {
|
||
|
/* Set one or more event flags of a selectable task. */
|
||
|
P_TCB p_tcb;
|
||
|
|
||
|
p_tcb = os_active_TCB[task_id-1U];
|
||
|
if (p_tcb == NULL) {
|
||
|
return;
|
||
|
}
|
||
|
p_tcb->events |= event_flags;
|
||
|
event_flags = p_tcb->waits;
|
||
|
/* If the task is not waiting for an event, it should not be put */
|
||
|
/* to ready state. */
|
||
|
if (p_tcb->state == WAIT_AND) {
|
||
|
/* Check for AND-connected events */
|
||
|
if ((p_tcb->events & event_flags) == event_flags) {
|
||
|
goto wkup;
|
||
|
}
|
||
|
}
|
||
|
if (p_tcb->state == WAIT_OR) {
|
||
|
/* Check for OR-connected events */
|
||
|
if (p_tcb->events & event_flags) {
|
||
|
p_tcb->waits &= p_tcb->events;
|
||
|
wkup: p_tcb->events &= ~event_flags;
|
||
|
rt_rmv_dly (p_tcb);
|
||
|
p_tcb->state = READY;
|
||
|
#ifdef __CMSIS_RTOS
|
||
|
rt_ret_val2(p_tcb, 0x08U/*osEventSignal*/, p_tcb->waits);
|
||
|
#else
|
||
|
rt_ret_val (p_tcb, OS_R_EVT);
|
||
|
#endif
|
||
|
rt_dispatch (p_tcb);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
/*--------------------------- rt_evt_clr ------------------------------------*/
|
||
|
|
||
|
void rt_evt_clr (U16 clear_flags, OS_TID task_id) {
|
||
|
/* Clear one or more event flags (identified by "clear_flags") of a */
|
||
|
/* selectable task (identified by "task"). */
|
||
|
P_TCB task = os_active_TCB[task_id-1U];
|
||
|
|
||
|
if (task == NULL) {
|
||
|
return;
|
||
|
}
|
||
|
task->events &= ~clear_flags;
|
||
|
}
|
||
|
|
||
|
|
||
|
/*--------------------------- isr_evt_set -----------------------------------*/
|
||
|
|
||
|
void isr_evt_set (U16 event_flags, OS_TID task_id) {
|
||
|
/* Same function as "os_evt_set", but to be called by ISRs. */
|
||
|
P_TCB p_tcb = os_active_TCB[task_id-1U];
|
||
|
|
||
|
if (p_tcb == NULL) {
|
||
|
return;
|
||
|
}
|
||
|
rt_psq_enq (p_tcb, event_flags);
|
||
|
rt_psh_req ();
|
||
|
}
|
||
|
|
||
|
|
||
|
/*--------------------------- rt_evt_get ------------------------------------*/
|
||
|
|
||
|
U16 rt_evt_get (void) {
|
||
|
/* Get events of a running task after waiting for OR connected events. */
|
||
|
return (os_tsk.run->waits);
|
||
|
}
|
||
|
|
||
|
|
||
|
/*--------------------------- rt_evt_psh ------------------------------------*/
|
||
|
|
||
|
void rt_evt_psh (P_TCB p_CB, U16 set_flags) {
|
||
|
/* Check if task has to be waken up */
|
||
|
U16 event_flags;
|
||
|
|
||
|
p_CB->events |= set_flags;
|
||
|
event_flags = p_CB->waits;
|
||
|
if (p_CB->state == WAIT_AND) {
|
||
|
/* Check for AND-connected events */
|
||
|
if ((p_CB->events & event_flags) == event_flags) {
|
||
|
goto rdy;
|
||
|
}
|
||
|
}
|
||
|
if (p_CB->state == WAIT_OR) {
|
||
|
/* Check for OR-connected events */
|
||
|
if (p_CB->events & event_flags) {
|
||
|
p_CB->waits &= p_CB->events;
|
||
|
rdy: p_CB->events &= ~event_flags;
|
||
|
rt_rmv_dly (p_CB);
|
||
|
p_CB->state = READY;
|
||
|
#ifdef __CMSIS_RTOS
|
||
|
rt_ret_val2(p_CB, 0x08U/*osEventSignal*/, p_CB->waits);
|
||
|
#else
|
||
|
rt_ret_val (p_CB, OS_R_EVT);
|
||
|
#endif
|
||
|
rt_put_prio (&os_rdy, p_CB);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/*----------------------------------------------------------------------------
|
||
|
* end of file
|
||
|
*---------------------------------------------------------------------------*/
|