PxInterruptGetName()

Return the name of an interrupt object.

APPLIES TO

8.2.0

SYNOPSIS
PxError_t PxInterruptGetName (PxInterrupt_t interrupt, PxChar_t *buffer, PxUInt_t bufsize);
ARGUMENTS
interrupt

The interrupt object id

buffer

Data area used to copy the interrupt object name to.

bufsize

The length of the interrupt object name.

RETURN VALUES
  • PXERR_NOERROR if successful, or a PXROS-HR error code otherwise.

ERROR CODES

PXERR_NAME_BUFOVERFLOW

The data area is too short to store the objects name

PXERR_OBJ_ILLOBJ

interrupt is not a valid object id

PXERR_PROT_PERMISSION

The data area is not writeable for the calling task

PXERR_GLOBAL_ILLEGAL_CORE

The requested object is not on the same core

PXERR_SERVICE_NOT_CONFIGURED

Service has not been configured

DESCRIPTION

PxInterruptGetName copies the name of interrupt object into the buffer buffer of length bufsize. The result is zero-terminated.