This commit is contained in:
Sebastien Bourdeauducq 2014-07-05 18:56:20 +02:00
parent 2bb821c571
commit 8349543732
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ void isr(void);
void exception_handler(unsigned long vect, unsigned long *sp); void exception_handler(unsigned long vect, unsigned long *sp);
void exception_handler(unsigned long vect, unsigned long *sp) void exception_handler(unsigned long vect, unsigned long *sp)
{ {
if ((vect & 0xf00) == EXTERNAL_IRQ) { if((vect & 0xf00) == EXTERNAL_IRQ) {
isr(); isr();
} else { } else {
/* Unhandled exception */ /* Unhandled exception */