]> git.sur5r.net Git - freertos/blob - Demo/lwIP_AVR32_UC3/UTILS/PREPROCESSOR/tpaste.h
Add AVR32 port and demo files.
[freertos] / Demo / lwIP_AVR32_UC3 / UTILS / PREPROCESSOR / tpaste.h
1 /* This header file is part of the ATMEL FREERTOS-0.9.0 Release */\r
2 \r
3 /*This file is prepared for Doxygen automatic documentation generation.*/\r
4 /*! \file *********************************************************************\r
5  *\r
6  * \brief Preprocessor token pasting utils.\r
7  *\r
8  * - Compiler:           IAR EWAVR32 and GNU GCC for AVR32\r
9  * - Supported devices:  All AVR32 devices can be used.\r
10  *\r
11  * \author               Atmel Corporation: http://www.atmel.com \n\r
12  *                       Support email: avr32@atmel.com\r
13  *\r
14  ******************************************************************************/\r
15 \r
16 /* Copyright (c) 2007, Atmel Corporation All rights reserved.\r
17  *\r
18  * Redistribution and use in source and binary forms, with or without\r
19  * modification, are permitted provided that the following conditions are met:\r
20  *\r
21  * 1. Redistributions of source code must retain the above copyright notice,\r
22  * this list of conditions and the following disclaimer.\r
23  *\r
24  * 2. Redistributions in binary form must reproduce the above copyright notice,\r
25  * this list of conditions and the following disclaimer in the documentation\r
26  * and/or other materials provided with the distribution.\r
27  *\r
28  * 3. The name of ATMEL may not be used to endorse or promote products derived\r
29  * from this software without specific prior written permission.\r
30  *\r
31  * THIS SOFTWARE IS PROVIDED BY ATMEL ``AS IS'' AND ANY EXPRESS OR IMPLIED\r
32  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\r
33  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE EXPRESSLY AND\r
34  * SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT,\r
35  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\r
36  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\r
37  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\r
38  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r
39  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF\r
40  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
41  */\r
42 \r
43 \r
44 #ifndef _TPASTE_H_\r
45 #define _TPASTE_H_\r
46 \r
47 \r
48 /*! \name Token Paste\r
49  *\r
50  * Paste N preprocessing tokens together, these tokens being allowed to be #defined.\r
51  *\r
52  * May be used only within macros with the tokens passed as arguments if the tokens are #defined.\r
53  *\r
54  * For example, writing TPASTE2(U, WIDTH) within a macro #defined by\r
55  * UTYPE(WIDTH) and invoked as UTYPE(UL_WIDTH) with UL_WIDTH #defined as 32 is\r
56  * equivalent to writing U32.\r
57  */\r
58 //! @{\r
59 #define TPASTE2( a, b)                            a##b\r
60 #define TPASTE3( a, b, c)                         a##b##c\r
61 #define TPASTE4( a, b, c, d)                      a##b##c##d\r
62 #define TPASTE5( a, b, c, d, e)                   a##b##c##d##e\r
63 #define TPASTE6( a, b, c, d, e, f)                a##b##c##d##e##f\r
64 #define TPASTE7( a, b, c, d, e, f, g)             a##b##c##d##e##f##g\r
65 #define TPASTE8( a, b, c, d, e, f, g, h)          a##b##c##d##e##f##g##h\r
66 #define TPASTE9( a, b, c, d, e, f, g, h, i)       a##b##c##d##e##f##g##h##i\r
67 #define TPASTE10(a, b, c, d, e, f, g, h, i, j)    a##b##c##d##e##f##g##h##i##j\r
68 //! @}\r
69 \r
70 /*! \name Absolute Token Paste\r
71  *\r
72  * Paste N preprocessing tokens together, these tokens being allowed to be #defined.\r
73  *\r
74  * No restriction of use if the tokens are #defined.\r
75  *\r
76  * For example, writing ATPASTE2(U, UL_WIDTH) anywhere with UL_WIDTH #defined\r
77  * as 32 is equivalent to writing U32.\r
78  */\r
79 //! @{\r
80 #define ATPASTE2( a, b)                           TPASTE2( a, b)\r
81 #define ATPASTE3( a, b, c)                        TPASTE3( a, b, c)\r
82 #define ATPASTE4( a, b, c, d)                     TPASTE4( a, b, c, d)\r
83 #define ATPASTE5( a, b, c, d, e)                  TPASTE5( a, b, c, d, e)\r
84 #define ATPASTE6( a, b, c, d, e, f)               TPASTE6( a, b, c, d, e, f)\r
85 #define ATPASTE7( a, b, c, d, e, f, g)            TPASTE7( a, b, c, d, e, f, g)\r
86 #define ATPASTE8( a, b, c, d, e, f, g, h)         TPASTE8( a, b, c, d, e, f, g, h)\r
87 #define ATPASTE9( a, b, c, d, e, f, g, h, i)      TPASTE9( a, b, c, d, e, f, g, h, i)\r
88 #define ATPASTE10(a, b, c, d, e, f, g, h, i, j)   TPASTE10(a, b, c, d, e, f, g, h, i, j)\r
89 //! @}\r
90 \r
91 \r
92 #endif  // _TPASTE_H_\r