root/webserver/example/EasyWEB/catch_irqs.cpp

Revision 10, 377 bytes (checked in by phil, 15 years ago)

First compileable version of EasyWeb? for CrossWorks? ARM Compiler, without TCPClockHandler - runs only once after startup.

Line 
1 void irq_handler (void)
2 {
3 //debug_printf("Bad Interrupt - IRQ Handler\n");
4 while (1) ;
5 }
6
7 void fiq_handler (void)
8 {
9 //debug_printf("Bad Interrupt - FIQ Handler\n");
10 while (1) ;
11 }
12
13 void swi_handler (void)
14 {
15 //debug_printf("Bad Interrupt - SW Interrupt Handler\n");
16 while (1) ;
17 }
18
19 void undef_handler (void)
20 {
21 //debug_printf("Bad Interrupt - Undefined Handler\n");
22 while (1) ;
23 }
24
Note: See TracBrowser for help on using the browser.