Browse Source

Fix build

pull/1188/head
Xose Pérez 5 years ago
parent
commit
530f8a75f9
2 changed files with 4 additions and 3 deletions
  1. +2
    -0
      code/espurna/config/version.h
  2. +2
    -3
      code/espurna/utils.ino

+ 2
- 0
code/espurna/config/version.h View File

@ -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

+ 2
- 3
code/espurna/utils.ino View File

@ -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());


Loading…
Cancel
Save