PxInterruptRequest()
Request an interrupt object.
- APPLIES TO
-
1.0.0
- SYNOPSIS
-
PxInterrupt_t PxInterruptRequest (PxOpool_t opoolid); - ARGUMENTS
|
- RETURN VALUES
-
-
Invalid interrupt object handle on failure
-
Valid interrupt object handle on success
-
- ERROR CODES
-
PXERR_OPOOL_ILLOPOOLopoolidis not a valid object poolPXERR_OBJ_ABORTEDRequest aborted by an event
PXERR_ACCESS_RIGHTThe calling task has not the right to access the object pool
PXERR_INTERRUPT_ILLINTERRUPTThe interrupt is not a valid interrupt object
PXERR_EVENT_ZEROThe given event mask is zero
PXERR_OBJ_NOOBJNo free object is available
PXERR_GLOBAL_ILLEGAL_COREThe requested object pool is not on the same core
PXERR_OBJ_ILLOBJThe passed object handle is not valid
PXERR_INTERNAL_INCONSISTENCYInconsistency of internal structures
- DESCRIPTION
-
The
PxInterruptRequestfunction creates a interrupt object by converting a free object from object poolopool. The object handle is returned. If there is no free object available, thePxInterruptRequestwaits until a free object is available.
- IMPLEMENTATION GUIDELINES
-
- Before call
-
-
opoolidmust 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 ofopoolidmay also be checked by thePxOpoolIsValidmacro (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 macroPxOpoolCoreIdand the own core id withPxGetCoreId(C). Typically the task’s default object poolPXOpoolTaskdefaultis used for this purpose.
-
- After call
-
-
The returned value is the id of type
PxInterrupt_t. This id may be checked with one of the following macros:-
PxInterruptIdIsValid()must be true. -
PxInterruptIdGet()must not be_PXIllegalObjId. -
PxInterruptIdError()must bePXERR_NOERRORotherwise the returned error code has to be interpreted (C).
-
-
- Best Practice
-
-
PxInterruptRequestmay block, if no PXROS-HR object is available. If blocking calls are prohibited,PxInterruptRequest_NoWait()should be used instead. -
PxInterruptRequestshould only be called during initialization to ensure the availability of the interrupt object.
-
- SEE ALSO
- USAGE
-
#include "pxdef.h" PxInterrupt_t Interrupt = PxInterruptRequest(opoolid); if (PxInterruptIdError(Interrupt) != PXERR_NOERROR) { // Report error } else { // Handle interrupt object }