You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
323 B
C
29 lines
323 B
C
7 years ago
|
#include <stdint.h>
|
||
|
|
||
|
void NMI_Handler(void) {}
|
||
|
|
||
|
void HardFault_Handler(void)
|
||
|
{
|
||
|
while (1);
|
||
|
}
|
||
|
|
||
|
void MemManage_Handler(void)
|
||
|
{
|
||
|
while (1);
|
||
|
}
|
||
|
|
||
|
void BusFault_Handler(void)
|
||
|
{
|
||
|
while (1);
|
||
|
}
|
||
|
|
||
|
void UsageFault_Handler(void)
|
||
|
{
|
||
|
while (1);
|
||
|
}
|
||
|
|
||
|
void SVC_Handler(void) {}
|
||
|
|
||
|
void DebugMon_Handler(void) {}
|
||
|
|