mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-30 16:24:09 +03:00
[sam] daily commit: EWARM project working, GCC compiling but fail due to missing match for Reset_Handler
This commit is contained in:
50
hardware/sam/variants/common/cortex_handlers.cpp
Normal file
50
hardware/sam/variants/common/cortex_handlers.cpp
Normal file
@ -0,0 +1,50 @@
|
||||
#include "Arduino.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
extern void NMI_Handler( void )
|
||||
{
|
||||
for ( ;; ) ;
|
||||
}
|
||||
|
||||
extern void HardFault_Handler( void )
|
||||
{
|
||||
for ( ;; ) ;
|
||||
}
|
||||
|
||||
extern void MemManage_Handler( void )
|
||||
{
|
||||
for ( ;; ) ;
|
||||
}
|
||||
|
||||
extern void BusFault_Handler( void )
|
||||
{
|
||||
for ( ;; ) ;
|
||||
}
|
||||
|
||||
extern void UsageFault_Handler( void )
|
||||
{
|
||||
for ( ;; ) ;
|
||||
}
|
||||
|
||||
extern void SVC_Handler( void )
|
||||
{
|
||||
for ( ;; ) ;
|
||||
}
|
||||
|
||||
extern void DebugMon_Handler( void )
|
||||
{
|
||||
for ( ;; ) ;
|
||||
}
|
||||
|
||||
extern void PendSV_Handler( void )
|
||||
{
|
||||
for ( ;; ) ;
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user