Browse Source

Arduino Nesso N1: move delay into debug

pull/1117/head
Ashley 7 months ago
parent
commit
6c291b87b7
  1. 3
      variants/arduino_nesso_n1/ArduinoNessoN1Board.h

3
variants/arduino_nesso_n1/ArduinoNessoN1Board.h

@ -14,7 +14,10 @@ private:
public:
void begin() {
ESP32Board::begin();
#ifdef MESH_DEBUG
// delay for 2s after boot to ensure early output below makes it to the serial logger
delay(2000);
#endif
#ifdef P_LORA_TX_LED
MESH_DEBUG_PRINTLN("ArduinoNessoN1.begin(): setup TX LED mode");

Loading…
Cancel
Save