]> rtime.felk.cvut.cz Git - can-usb1.git/blob - ulan/embedded/arch/mcs51/generic/libs/plan/ul_idstr.c
Initializing repo
[can-usb1.git] / ulan / embedded / arch / mcs51 / generic / libs / plan / ul_idstr.c
1 #include <cpu_def.h>
2 #include <plan.h>
3
4 #define __STRINGIFY(x)     #x              /* stringify without expanding x */
5 #define STRINGIFY(x)    __STRINGIFY(x)        /* expand x, then stringify */
6
7 #define NAME ".mt " \
8              STRINGIFY(APPID) \
9              " .uP " \
10              STRINGIFY(MACH) \
11              " .c " \
12               __DATE__ " " __TIME__
13
14 ul_idstr_t CODE ul_idstr = {NAME, sizeof(NAME)-1};