mirror of
https://github.com/opentx/opentx.git
synced 2025-07-23 08:15:17 +03:00
These changes make it possible to compile open9x with old (avr-gcc 4.3.3, avr-libc 1.6.7) and up-to-date (avr-gcc 4.6.2, avr-libc 1.8.0) build environments. See Issue 1 for more details.
13 lines
358 B
C++
13 lines
358 B
C++
#include "open9x.h"
|
|
#include "stamp-open9x.h"
|
|
|
|
#define STR2(s) #s
|
|
#define DEFNUMSTR(s) STR2(s)
|
|
|
|
const pm_char stamp1[] PROGMEM = "VERS: V" VERS_STR;
|
|
const pm_char stamp2[] PROGMEM = " SVN: " SVN_STR;
|
|
const pm_char stamp3[] PROGMEM = "DATE: " DATE_STR;
|
|
const pm_char stamp4[] PROGMEM = "TIME: " TIME_STR;
|
|
const pm_char stamp5[] PROGMEM = " MOD: " MOD_STR;
|
|
|
|
|