Browse Source

Move debug configuration to general.h file

fastled
Xose Pérez 7 years ago
parent
commit
32aa40f5cb
2 changed files with 15 additions and 15 deletions
  1. +0
    -15
      code/espurna/config/arduino.h
  2. +15
    -0
      code/espurna/config/general.h

+ 0
- 15
code/espurna/config/arduino.h View File

@ -3,21 +3,6 @@
// Uncomment the appropiate line(s) to build from the Arduino IDE
//--------------------------------------------------------------------------------
//--------------------------------------------------------------------------------
// General
//--------------------------------------------------------------------------------
#ifndef DEBUG_PORT
#define DEBUG_PORT Serial
#endif
// Uncomment and configure these lines to enable remote debug via udpDebug
// To receive the message son the destination computer use nc:
// nc -ul 8111
//#define DEBUG_UDP_IP IPAddress(192, 168, 1, 100)
//#define DEBUG_UDP_PORT 8111
//--------------------------------------------------------------------------------
// Hardware
//--------------------------------------------------------------------------------


+ 15
- 0
code/espurna/config/general.h View File

@ -8,6 +8,21 @@
#define HEARTBEAT_INTERVAL 300000
#define UPTIME_OVERFLOW 4294967295
//--------------------------------------------------------------------------------
// DEBUG
//--------------------------------------------------------------------------------
#ifndef DEBUG_PORT
#define DEBUG_PORT Serial
#endif
// Uncomment and configure these lines to enable remote debug via udpDebug
// To receive the message son the destination computer use nc:
// nc -ul 8111
//#define DEBUG_UDP_IP IPAddress(192, 168, 1, 100)
//#define DEBUG_UDP_PORT 8111
//--------------------------------------------------------------------------------
// EEPROM
//--------------------------------------------------------------------------------


Loading…
Cancel
Save