PxDefaultIntHandler()

Default interrupt handler function.

APPLIES TO

8.2.1

SYNOPSIS
void PxDefaultIntHandler(PxUInt_t intno);
ARGUMENTS
intno

Active interrupt number

DESCRIPTION

This function is called whenever an interrupt is triggered for which no handler has been installed. The kernel library contains only a dummy implementation. To use this feature an application-specific implementation must be provided and linked to the application.

SEE ALSO
USAGE
#include "pxdef.h"

void PxDefaultIntHandler(PxUInt_t intno) {
    // Whatever should be done in response to the interrupt

}