Contiki-NG
Loading...
Searching...
No Matches
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__) && (__GNUC__ >= 9)
62#define ISR(a,b) __attribute__((interrupt(a ## _VECTOR))) void b(void)
63#elif defined(__GNUC__) && defined(__MSP430__)
64 /* This is the MSPGCC compiler */
65#define ISR(a,b) interrupt(a ## _VECTOR) b(void)
66#elif defined(__AQCOMPILER__)
67 /* This is the Quadravox compiler */
68#define ISR(a,b) void _INTERRUPT[a ## _VECTOR] b(void)
69#elif defined(__IAR_SYSTEMS_ICC__) && (((__TID__ >> 8) & 0x7f) == 43) && (__VER__ < 200)
70 /* This is V1.xx of the IAR compiler. */
71#define ISR(a,b) interrupt[a ## _VECTOR] void b(void)
72#elif defined(__IAR_SYSTEMS_ICC__) && (((__TID__ >> 8) & 0x7f) == 43) && (__VER__ < 600)
73 /* This is V2.xx, V3.xx, V4.xx, V5.xx of the IAR compiler. */
74#define ISR(a,b) \
75__PRAGMA__(vector=a ##_VECTOR) \
76__interrupt void b(void)
77#elif defined(__CROSSWORKS_MSP430)
78 /* This is the Rowley Crossworks compiler */
79#define ISR(a,b) void b __interrupt[a ## _VECTOR](void)
80#elif defined(__TI_COMPILER_VERSION__)
81 /* This is the Code Composer Essentials compiler. */
82#define ISR(a,b) __interrupt void b(void); \
83a ## _ISR(b) \
84__interrupt void b(void)
85#else
86 #error Compiler not recognised.
87#endif
88
89#endif