PxInterruptIdError()

Return the last error of the object handle Interrupt.

APPLIES TO

8.2.0

SYNOPSIS
PxError_t PxInterruptIdError (PxInterrupt_t Interrupt);
ARGUMENTS
Interrupt

An Interrupt handle

RETURN VALUES
  • The last error of the object handle Interrupt

DESCRIPTION

PxInterruptIdError returns the last error of the object handle Interrupt.

USAGE
#include "pxdef.h"

PxError_t err = PxInterruptIdError(Interrupt);

if (err != PXERR_NOERROR) {
    // Report error
}