]> git.sur5r.net Git - freertos/blob - Demo/AVR32_UC3A_GCC/Atmel_SW_Framework/UTILS/PREPROCESSOR/tpaste.h
cc46a5d6fa6c9d7c8e6108c8f587c24a90da07ce
[freertos] / Demo / AVR32_UC3A_GCC / Atmel_SW_Framework / UTILS / PREPROCESSOR / tpaste.h
1 /* This header file is part of the ATMEL AVR-UC3-SoftwareFramework-1.7.0 Release */\r
2
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 and FAQ: http://support.atmel.no/\r
13  *\r
14  ******************************************************************************/\r
15 \r
16 /* Copyright (c) 2009 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, this\r
22  * 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  * 4. This software may only be redistributed and used in connection with an Atmel\r
32  * AVR product.\r
33  *\r
34  * THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR IMPLIED\r
35  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\r
36  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE\r
37  * EXPRESSLY AND SPECIFICALLY DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR\r
38  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\r
39  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\r
40  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND\r
41  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\r
42  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\r
43  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE\r
44  *\r
45  */\r
46 \r
47 #ifndef _TPASTE_H_\r
48 #define _TPASTE_H_\r
49 \r
50 \r
51 /*! \name Token Paste\r
52  *\r
53  * Paste N preprocessing tokens together, these tokens being allowed to be \#defined.\r
54  *\r
55  * May be used only within macros with the tokens passed as arguments if the tokens are \#defined.\r
56  *\r
57  * For example, writing TPASTE2(U, WIDTH) within a macro \#defined by\r
58  * UTYPE(WIDTH) and invoked as UTYPE(UL_WIDTH) with UL_WIDTH \#defined as 32 is\r
59  * equivalent to writing U32.\r
60  */\r
61 //! @{\r
62 #define TPASTE2( a, b)                            a##b\r
63 #define TPASTE3( a, b, c)                         a##b##c\r
64 #define TPASTE4( a, b, c, d)                      a##b##c##d\r
65 #define TPASTE5( a, b, c, d, e)                   a##b##c##d##e\r
66 #define TPASTE6( a, b, c, d, e, f)                a##b##c##d##e##f\r
67 #define TPASTE7( a, b, c, d, e, f, g)             a##b##c##d##e##f##g\r
68 #define TPASTE8( a, b, c, d, e, f, g, h)          a##b##c##d##e##f##g##h\r
69 #define TPASTE9( a, b, c, d, e, f, g, h, i)       a##b##c##d##e##f##g##h##i\r
70 #define TPASTE10(a, b, c, d, e, f, g, h, i, j)    a##b##c##d##e##f##g##h##i##j\r
71 //! @}\r
72 \r
73 /*! \name Absolute Token Paste\r
74  *\r
75  * Paste N preprocessing tokens together, these tokens being allowed to be \#defined.\r
76  *\r
77  * No restriction of use if the tokens are \#defined.\r
78  *\r
79  * For example, writing ATPASTE2(U, UL_WIDTH) anywhere with UL_WIDTH \#defined\r
80  * as 32 is equivalent to writing U32.\r
81  */\r
82 //! @{\r
83 #define ATPASTE2( a, b)                           TPASTE2( a, b)\r
84 #define ATPASTE3( a, b, c)                        TPASTE3( a, b, c)\r
85 #define ATPASTE4( a, b, c, d)                     TPASTE4( a, b, c, d)\r
86 #define ATPASTE5( a, b, c, d, e)                  TPASTE5( a, b, c, d, e)\r
87 #define ATPASTE6( a, b, c, d, e, f)               TPASTE6( a, b, c, d, e, f)\r
88 #define ATPASTE7( a, b, c, d, e, f, g)            TPASTE7( a, b, c, d, e, f, g)\r
89 #define ATPASTE8( a, b, c, d, e, f, g, h)         TPASTE8( a, b, c, d, e, f, g, h)\r
90 #define ATPASTE9( a, b, c, d, e, f, g, h, i)      TPASTE9( a, b, c, d, e, f, g, h, i)\r
91 #define ATPASTE10(a, b, c, d, e, f, g, h, i, j)   TPASTE10(a, b, c, d, e, f, g, h, i, j)\r
92 //! @}\r
93 \r
94 \r
95 #endif  // _TPASTE_H_\r