Browse Source

Add missing TELNET configuration in info output

fastled
Xose Pérez 7 years ago
parent
commit
07274e4cf8
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      code/espurna/espurna.ino

+ 6
- 0
code/espurna/espurna.ino View File

@ -149,6 +149,9 @@ void welcome() {
#if DEBUG_SERIAL_SUPPORT #if DEBUG_SERIAL_SUPPORT
DEBUG_MSG_P(PSTR(" DEBUG_SERIAL")); DEBUG_MSG_P(PSTR(" DEBUG_SERIAL"));
#endif #endif
#if DEBUG_TELNET_SUPPORT
DEBUG_MSG_P(PSTR(" DEBUG_TELNET"));
#endif
#if DEBUG_UDP_SUPPORT #if DEBUG_UDP_SUPPORT
DEBUG_MSG_P(PSTR(" DEBUG_UDP")); DEBUG_MSG_P(PSTR(" DEBUG_UDP"));
#endif #endif
@ -185,6 +188,9 @@ void welcome() {
#if SPIFFS_SUPPORT #if SPIFFS_SUPPORT
DEBUG_MSG_P(PSTR(" SPIFFS")); DEBUG_MSG_P(PSTR(" SPIFFS"));
#endif #endif
#if TELNET_SUPPORT
DEBUG_MSG_P(PSTR(" TELNET"));
#endif
#if TERMINAL_SUPPORT #if TERMINAL_SUPPORT
DEBUG_MSG_P(PSTR(" TERMINAL")); DEBUG_MSG_P(PSTR(" TERMINAL"));
#endif #endif


Loading…
Cancel
Save