PxDefaultIntHandler()
Default interrupt handler function.
- APPLIES TO
-
1.0.0
- SYNOPSIS
-
void PxDefaultIntHandler(int intno); - ARGUMENTS
|
- 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(int intno) { // Whatever should be done in response to the interrupt }