PxInterruptRequest_EvWait()
Request an interrupt object while waiting for events
.
- APPLIES TO
-
8.2.0
- SYNOPSIS
-
PxInterrupt_t PxInterruptRequest_EvWait (PxOpool_t opoolid, PxEvents_t events);
- ARGUMENTS
|
|
|
- RETURN VALUES
-
-
Valid interrupt object handle on success
-
Invalid interrupt object handle on failure
-
Events that aborted the request
-
- ERROR CODES
-
PXERR_OPOOL_ILLOPOOL
opoolid
is not a valid object poolPXERR_OBJ_ABORTED
Request aborted by an event
PXERR_ACCESS_RIGHT
The calling task has not the right to access the object pool
PXERR_INTERRUPT_ILLINTERRUPT
The interrupt is not a valid interrupt object
PXERR_EVENT_ZERO
The given event mask is zero
PXERR_OBJ_NOOBJ
No free object is available
PXERR_GLOBAL_ILLEGAL_CORE
The requested object pool is not on the same core
PXERR_OBJ_ILLOBJ
The passed object handle is not valid
PXERR_INTERNAL_INCONSISTENCY
Inconsistency of internal structures
- DESCRIPTION
-
The PxInterruptRequest_EvWait function creates an interrupt object by converting a free object from object pool opool. The object handle is returned. If there is no free object available, PxInterruptRequest_EvWait waits until either there is a free object or an event specified in the set events occurs.
- IMPLEMENTATION GUIDELINES
-
- Before call
-
-
opoolid
must be a valid PXROS-HR object pool and the calling task must have the access right to take objects from this object pool (V). The validity ofopoolid
may also be checked by thePxOpoolIsValid
macro (F). The object pool must be created on the same core as the caller runs on. The creator core id can be read with the macroPxOpoolCoreId
and the own core id withPxGetCoreId
(C). Typically the task’s default object poolPXOpoolTaskdefault
is used for this purpose. -
The parameter
events
contains a bitmask of events awaited and should not be zero. Typically the event mask is a constant (V).
-
- After call
-
-
The returned value is a structure of type
PxInterruptEvent_t
. The received events are stored in theevents
part, the interrupt object id is given in theinterrupt
part of the structure. This id may be checked with one of the following macros:-
PxInterruptIdIsValid()
must be true. -
PxInterruptIdGet()
must not be_PXIllegalObjId
. -
PxInterruptIdError()
must bePXERR_NOERROR
otherwise the returned error code has to be interpreted (C).
-
-
- Best Practice
-
-
PxInterruptRequest_EvWait
may block, if no PXROS-HR object is available and no instance (task or handler) sends an event. If blocking calls are prohibited,PxInterruptRequest_NoWait()
should be used instead or the call should be monitored by the PXROS-HRPxTo
mechanism. -
PxInterruptRequest_EvWait
should only be called during initialization to ensure the availability of the interrupt object.
-
- SEE ALSO
- USAGE
-
#include "pxdef.h" #define MY_EVENT_MASK 0x1l PxInterrupt_t Interrupt = PxInterruptRequest_EvWait(opoolid, MY_EVENT_MASK); if (Interrupt & MY_EVENT_MASK) { // Handle interrupt object } else if (PxInterruptIdError(Interrupt) != PXERR_NOERROR){ // Report error }