]> git.sur5r.net Git - freertos/blob - Demo/AVR32_UC3A_GCC/Atmel_SW_Framework/UTILS/PREPROCESSOR/stringz.h
153e07fdeb4ca3220f7e50a6db9f6d99c94fda97
[freertos] / Demo / AVR32_UC3A_GCC / Atmel_SW_Framework / UTILS / PREPROCESSOR / stringz.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 stringizing 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 _STRINGZ_H_\r
48 #define _STRINGZ_H_\r
49 \r
50 \r
51 /*! \brief Stringize.\r
52  *\r
53  * Stringize a preprocessing token, this token being allowed to be \#defined.\r
54  *\r
55  * May be used only within macros with the token passed as an argument if the token is \#defined.\r
56  *\r
57  * For example, writing STRINGZ(PIN) within a macro \#defined by PIN_NAME(PIN)\r
58  * and invoked as PIN_NAME(PIN0) with PIN0 \#defined as A0 is equivalent to\r
59  * writing "A0".\r
60  */\r
61 #define STRINGZ(x)                                #x\r
62 \r
63 /*! \brief Absolute stringize.\r
64  *\r
65  * Stringize a preprocessing token, this token being allowed to be \#defined.\r
66  *\r
67  * No restriction of use if the token is \#defined.\r
68  *\r
69  * For example, writing ASTRINGZ(PIN0) anywhere with PIN0 \#defined as A0 is\r
70  * equivalent to writing "A0".\r
71  */\r
72 #define ASTRINGZ(x)                               STRINGZ(x)\r
73 \r
74 \r
75 #endif  // _STRINGZ_H_\r