1
0
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:
Thibaut VIARD
2011-09-09 19:15:21 +02:00
parent 3916472a36
commit 79ee7a1f6a
61 changed files with 4493 additions and 857 deletions

View 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