From dbd9c35dc4e1bbc25583c42b7ca1492b8aed0c7d Mon Sep 17 00:00:00 2001 From: Arti Zirk Date: Thu, 1 Dec 2016 14:40:57 +0200 Subject: [PATCH] Fix --- src/hmi_msg.c | 2 +- src/hmi_msg.h | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/hmi_msg.c b/src/hmi_msg.c index 49cf0f3..eeeedd1 100644 --- a/src/hmi_msg.c +++ b/src/hmi_msg.c @@ -8,4 +8,4 @@ static const char m4[] PROGMEM = "April"; static const char m5[] PROGMEM = "May"; static const char m6[] PROGMEM = "June"; -extern PGM_P const months[] PROGMEM = {m1,m2,m3,m4,m5,m6}; +PGM_P const months[] PROGMEM = {m1,m2,m3,m4,m5,m6}; diff --git a/src/hmi_msg.h b/src/hmi_msg.h index 2913a42..1106eb0 100644 --- a/src/hmi_msg.h +++ b/src/hmi_msg.h @@ -7,4 +7,6 @@ #define GET_MONTH_MSG "Enter Month name first letter >" #define UPTIME_MSG "Uptime: %lu s" +extern PGM_P const months[]; + #endif /* _HMI_MSG_H_ */