From 0a08e7ffbf4b8f49410a541231fc1765487a0026 Mon Sep 17 00:00:00 2001 From: Kevin Brosius Date: Mon, 11 Mar 2024 16:55:01 -0400 Subject: [PATCH] Remove debug build settings from PR --- Boards.h | 8 -------- Display.h | 4 +--- RNode_Firmware.ino | 2 ++ 3 files changed, 3 insertions(+), 11 deletions(-) diff --git a/Boards.h b/Boards.h index bdc557b..a111fab 100644 --- a/Boards.h +++ b/Boards.h @@ -43,14 +43,6 @@ #define BOARD_GENERIC_NRF52 0x50 #define BOARD_RAK4630 0x51 - - // ----------------------------------- - // override for local compile - //#define BOARD_MODEL BOARD_LORA32_V1_0 - #define BOARD_MODEL BOARD_HELTEC_LORA32_V3 - // ----------------------------------- - - #if defined(__AVR_ATmega1284P__) #define PLATFORM PLATFORM_AVR #define MCU_VARIANT MCU_1284P diff --git a/Display.h b/Display.h index a880357..e0b17c6 100644 --- a/Display.h +++ b/Display.h @@ -372,9 +372,7 @@ void draw_stat_area() { } void update_stat_area() { - // override eeprom check for BLE - //if (eeprom_ok && !firmware_update_mode && !console_active) { - if ( !firmware_update_mode && !console_active) { + if (eeprom_ok && !firmware_update_mode && !console_active) { draw_stat_area(); if (disp_mode == DISP_MODE_PORTRAIT) { diff --git a/RNode_Firmware.ino b/RNode_Firmware.ino index 9bb5def..54ddb12 100644 --- a/RNode_Firmware.ino +++ b/RNode_Firmware.ino @@ -1109,6 +1109,7 @@ void validate_status() { #endif } else { hw_ready = false; + Serial.write("No valid radio module found\r\n"); #if HAS_DISPLAY if (disp_ready) { device_init_done = true; @@ -1151,6 +1152,7 @@ void validate_status() { } } else { hw_ready = false; + Serial.write("Error, incorrect boot vector\r\n"); #if HAS_DISPLAY if (disp_ready) { device_init_done = true;