1
0
Fork 0
i237/src/hmi_msg.h

27 lines
624 B
C
Raw Normal View History

2016-09-26 17:33:21 +03:00
#ifndef _HMI_MSG_H_
#define _HMI_MSG_H_
2016-11-02 15:14:51 +02:00
#define VER_FW "Version: %S built on: %S %S\n"
#define VER_LIBC "avr-libc version: %S\n"
#define UI_GET_MONTH_LETTER "Enter Month name first letter >"
2016-09-26 17:33:21 +03:00
#define STUD_NAME "Arti Zirk"
2016-11-02 15:14:51 +02:00
const char string_1[] PROGMEM = "January";
const char string_2[] PROGMEM = "February";
const char string_3[] PROGMEM = "March";
const char string_4[] PROGMEM = "April";
const char string_5[] PROGMEM = "May";
const char string_6[] PROGMEM = "June";
PGM_P const months_table[] PROGMEM =
{
string_1,
string_2,
string_3,
string_4,
string_5,
string_6
};
2016-09-26 17:33:21 +03:00
#endif /* _HMI_MSG_H_ */