summaryrefslogtreecommitdiff
path: root/fault.cpp
blob: 42ebd301caae01fcb38c62af6ea839df82ce34a7 (plain)
1
2
3
4
5
6
7
8
9
10
#include "interrupt.h"

template<> void interrupt<Interrupt::NMI>()         { while(1); }
template<> void interrupt<Interrupt::HardFault>()   { while(1); }
template<> void interrupt<Interrupt::MemManage>()   { while(1); }
template<> void interrupt<Interrupt::BusFault>()    { while(1); }
template<> void interrupt<Interrupt::UsageFault>()  { while(1); }
//template<> void interrupt<Interrupt::SVCall>()      { while(1); }
template<> void interrupt<Interrupt::PendSV>()      { while(1); }
//template<> void interrupt<Interrupt::SysTick>()     { while(1); }