diff --git a/Config.h b/Config.h index 21b2f6b..5878bd7 100644 --- a/Config.h +++ b/Config.h @@ -201,7 +201,7 @@ #define HAS_CONSOLE true #define HAS_PMU true #define HAS_NP true - #define HAS_SD true + #define HAS_SD false const int pin_cs = 18; const int pin_reset = 23; const int pin_dio = 26; diff --git a/Console.h b/Console.h index 1e5f1e8..12fd046 100644 --- a/Console.h +++ b/Console.h @@ -160,50 +160,4 @@ void console_loop(){ // Internally, this yields the thread and allows // other tasks to run. delay(2); -} - -// void listDir(fs::FS &fs, const char * dirname, uint8_t levels){ -// Serial.printf("Listing directory: %s\r\n", dirname); - -// File root = fs.open(dirname); -// if(!root){ -// Serial.println("- failed to open directory"); -// return; -// } -// if(!root.isDirectory()){ -// Serial.println(" - not a directory"); -// return; -// } - -// File file = root.openNextFile(); -// while(file){ -// if(file.isDirectory()){ -// Serial.print(" DIR : "); -// Serial.println(file.name()); -// if(levels){ -// listDir(fs, file.path(), levels -1); -// } -// } else { -// Serial.print(" FILE: "); -// Serial.print(file.name()); -// Serial.print("\tSIZE: "); -// Serial.println(file.size()); -// } -// file = root.openNextFile(); -// } -// } - -// void readFile(fs::FS &fs, const char * path){ -// Serial.printf("Reading file: %s\r\n", path); - -// File file = fs.open(path); -// if(!file || file.isDirectory()){ -// Serial.println("− failed to open file for reading"); -// return; -// } - -// Serial.println("− read from file:"); -// while(file.available()){ -// Serial.write(file.read()); -// } -// } +} \ No newline at end of file diff --git a/RNode_Firmware.ino b/RNode_Firmware.ino index 4833d3f..3810675 100644 --- a/RNode_Firmware.ino +++ b/RNode_Firmware.ino @@ -266,7 +266,7 @@ void ISR_VECT receive_callback(int packet_size) { bool startRadio() { update_radio_lock(); - if (!radio_online) { + if (!radio_online && !console_active) { if (!radio_locked && hw_ready) { if (!LoRa.begin(lora_freq)) { // The radio could not be started. diff --git a/Release/spiffs.bin b/Release/spiffs.bin index b38f490..72cb801 100644 Binary files a/Release/spiffs.bin and b/Release/spiffs.bin differ