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