From 530f8a75f9fce1e339b266f30da8771d516470b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xose=20P=C3=A9rez?= Date: Sun, 9 Sep 2018 23:24:41 +0200 Subject: [PATCH] Fix build --- code/espurna/config/version.h | 2 ++ code/espurna/utils.ino | 5 ++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/code/espurna/config/version.h b/code/espurna/config/version.h index 091bd57d..34193cb0 100644 --- a/code/espurna/config/version.h +++ b/code/espurna/config/version.h @@ -1,3 +1,5 @@ #define APP_NAME "ESPURNA" #define APP_VERSION "1.13.3a" +#define APP_AUTHOR "xose.perez@gmail.com" +#define APP_WEBSITE "http://tinkerman.cat" #define CFG_VERSION 3 diff --git a/code/espurna/utils.ino b/code/espurna/utils.ino index 78cb53b9..7686e17e 100644 --- a/code/espurna/utils.ino +++ b/code/espurna/utils.ino @@ -272,9 +272,8 @@ void info() { } else { DEBUG_MSG_P(PSTR("[MAIN] %s %s\n"), (char *) APP_NAME, (char *) APP_VERSION); } - DEBUG_MSG_P(PSTR("[MAIN] xose.perez@gmail.com\n")); - DEBUG_MSG_P(PSTR("[MAIN] @xoseperez\n")); - DEBUG_MSG_P(PSTR("[MAIN] http://tinkerman.cat\n\n")); + DEBUG_MSG_P(PSTR("[MAIN] " APP_AUTHOR "\n")); + DEBUG_MSG_P(PSTR("[MAIN] " APP_WEBSITE "\n\n")); DEBUG_MSG_P(PSTR("[MAIN] CPU chip ID: 0x%06X\n"), ESP.getChipId()); DEBUG_MSG_P(PSTR("[MAIN] CPU frequency: %u MHz\n"), ESP.getCpuFreqMHz()); DEBUG_MSG_P(PSTR("[MAIN] SDK version: %s\n"), ESP.getSdkVersion());