PxIntInitVectab()

Initialize the C interrupt interface.

APPLIES TO

1.0.0

SYNOPSIS
void PxIntInitVectab(PxInt_t maxintno, ArmInstallExceptionHandler_t InstallInterruptHandler, ArmInstallExceptionHandler_t InstallTrapHandler);
ARGUMENTS
maxintno

maximum interrupt number

InstallInterruptHandler

a pointer to a interrupt handler function

InstallTrapHandler

a pointer to a trap handler function

DESCRIPTION

PxIntInitVectab initializes the C interrupt interface.

IMPLEMENTATION GUIDELINES
Before call
  • No checks necessary.

After call
  • No checks necessary.

Best Practice
  • This function is automatically executed in PxInit and must not be called by the application!

SEE ALSO
USAGE
#include "pxdef.h"

PxIntInitVectab(5, interruptHandler, trapHandler);