1
0
Fork 0

Better final version of lab03.2

This commit is contained in:
Arti Zirk 2016-10-23 22:58:24 +03:00
parent f72a7b33e0
commit 9d5fff9fa0
2 changed files with 4 additions and 4 deletions

View File

@ -2,8 +2,8 @@
#ifndef _HMI_MSG_H_
#define _HMI_MSG_H_
#define PROG_VERSION "Version: "GIT_DESCR" built on: "__DATE__" "__TIME__"\n"
#define LIBC_VERSION "avr-libc version: "__AVR_LIBC_VERSION_STRING__"\n"
#define PROG_VERSION "Version: %S built on: %S %S\n"
#define LIBC_VERSION "avr-libc version: %S\n"
#define STUD_NAME "Arti Zirk"
#define GET_MONTH_MSG "Enter Month name first letter >"

View File

@ -23,8 +23,8 @@ int main (void)
/* End init */
/* Print version info to stderr */
fprintf_P(stderr, PSTR(PROG_VERSION));
fprintf_P(stderr, PSTR(LIBC_VERSION));
fprintf_P(stderr, PSTR(PROG_VERSION), PSTR(GIT_DESCR), PSTR(__DATE__), PSTR(__TIME__));
fprintf_P(stderr, PSTR(LIBC_VERSION), PSTR(__AVR_LIBC_VERSION_STRING__));
/* End version print */
fprintf_P(stdout, PSTR(STUD_NAME));