Contiki-NG
isr_compat.h
1 /*
2  * Copyright (c) 2005 Steve Underwood
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS `AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  */
27 
28 #ifndef ISR_COMPAT_H_
29 #define ISR_COMPAT_H_
30 
31 /* Cross compiler interrupt service routine compatibility definitions */
32 /* This code currently allows for:
33  MSPGCC - the GNU tools for the MSP430
34  Quadravox AQ430
35  IAR Version 1 (old syntax)
36  IAR Versions 2, 3, 4, 5 (new syntax)
37  Rowley Crossworks
38  Code Composer Essentials
39 
40  These macros allow us to define interrupt routines for all
41  compilers with a common syntax:
42 
43  ISR(<interrupt>, <routine name>)
44  {
45  }
46 
47  e.g.
48 
49  ISR(ADC12, adc_service_routine)
50  {
51  ADC12CTL0 &= ~ENC;
52  ADC12CTL0 |= ENC;
53  }
54 */
55 
56 /* 2012-03-02: minor update to support IAR version 4 and 5 */
57 
58 /* A tricky #define to stringify _Pragma parameters */
59 #define __PRAGMA__(x) _Pragma(#x)
60 
61 #if defined(__GNUC__) && defined(__MSP430__)
62  /* This is the MSPGCC compiler */
63 #define ISR(a,b) interrupt(a ## _VECTOR) b(void)
64 #elif defined(__AQCOMPILER__)
65  /* This is the Quadravox compiler */
66 #define ISR(a,b) void _INTERRUPT[a ## _VECTOR] b(void)
67 #elif defined(__IAR_SYSTEMS_ICC__) && (((__TID__ >> 8) & 0x7f) == 43) && (__VER__ < 200)
68  /* This is V1.xx of the IAR compiler. */
69 #define ISR(a,b) interrupt[a ## _VECTOR] void b(void)
70 #elif defined(__IAR_SYSTEMS_ICC__) && (((__TID__ >> 8) & 0x7f) == 43) && (__VER__ < 600)
71  /* This is V2.xx, V3.xx, V4.xx, V5.xx of the IAR compiler. */
72 #define ISR(a,b) \
73 __PRAGMA__(vector=a ##_VECTOR) \
74 __interrupt void b(void)
75 #elif defined(__CROSSWORKS_MSP430)
76  /* This is the Rowley Crossworks compiler */
77 #define ISR(a,b) void b __interrupt[a ## _VECTOR](void)
78 #elif defined(__TI_COMPILER_VERSION__)
79  /* This is the Code Composer Essentials compiler. */
80 #define ISR(a,b) __interrupt void b(void); \
81 a ## _ISR(b) \
82 __interrupt void b(void)
83 #else
84  #error Compiler not recognised.
85 #endif
86 
87 #endif