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