The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.
Dependents: hello SerialTestv11 SerialTestv12 Sierpinski ... more
mbed 2
This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.
TARGET_SAMR21G18A/TOOLCHAIN_ARM_MICRO/stringz.h
- Committer:
- AnnaBridge
- Date:
- 2019-02-20
- Revision:
- 172:65be27845400
- Parent:
- 171:3a7713b1edbc
File content as of revision 172:65be27845400:
#ifndef _STRINGZ_H_ #define _STRINGZ_H_ /** * \defgroup group_sam0_utils_stringz Preprocessor - Stringize * * \ingroup group_sam0_utils * * @{ */ /** \brief Stringize. * * Stringize a preprocessing token, this token being allowed to be \#defined. * * May be used only within macros with the token passed as an argument if the * token is \#defined. * * For example, writing STRINGZ(PIN) within a macro \#defined by PIN_NAME(PIN) * and invoked as PIN_NAME(PIN0) with PIN0 \#defined as A0 is equivalent to * writing "A0". */ #define STRINGZ(x) #x /** \brief Absolute stringize. * * Stringize a preprocessing token, this token being allowed to be \#defined. * * No restriction of use if the token is \#defined. * * For example, writing ASTRINGZ(PIN0) anywhere with PIN0 \#defined as A0 is * equivalent to writing "A0". */ #define ASTRINGZ(x) STRINGZ(x) /** @} */ #endif // _STRINGZ_H_