BeRTOS
vic_lpc2.c
Go to the documentation of this file.
00001 
00039 #include "vic_lpc2.h"
00040 #include <cfg/log.h>
00041 
00042 
00043 void NORETURN vic_defaultHandler(void)
00044 {
00045     IRQ_DISABLE;
00046     LOG_ERR("Unhandled IRQ\n"
00047         "VICIRQStatus %08lX\n"
00048         "VICFIQStatus %08lX\n", VICIRQStatus, VICFIQStatus);
00049     while (1)
00050         PAUSE;
00051 }