1
0
Fork 0
i237/src/hmi_msg.h

26 lines
860 B
C
Raw Normal View History

2016-10-10 22:24:33 +03:00
#include <avr/pgmspace.h>
2016-09-26 17:33:21 +03:00
#ifndef _HMI_MSG_H_
#define _HMI_MSG_H_
2016-10-23 22:58:24 +03:00
#define PROG_VERSION "Version: %S built on: %S %S\n"
#define LIBC_VERSION "avr-libc version: %S\n"
2016-10-23 22:11:20 +03:00
#define STUD_NAME "Arti Zirk"
#define GET_MONTH_MSG "Enter Month name first letter >"
2016-09-26 17:33:21 +03:00
2016-10-23 22:49:49 +03:00
const char JANUARY[] PROGMEM = "January";
const char FEBRUARY[] PROGMEM = "February";
const char MARCH[] PROGMEM = "March";
const char APRIL[] PROGMEM = "April";
const char MAY[] PROGMEM = "May";
const char JUNE[] PROGMEM = "June";
PGM_P const ENG_MONTH[] PROGMEM = {
JANUARY,
FEBRUARY,
MARCH,
APRIL,
MAY,
JUNE,
};
2016-09-26 17:33:21 +03:00
#endif /* _HMI_MSG_H_ */