From 62d157d7f0529e3ddda220fa61cadbdd81064536 Mon Sep 17 00:00:00 2001 From: richonguzman Date: Tue, 6 Aug 2024 09:12:01 -0400 Subject: [PATCH] state add at boot --- src/lora_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lora_utils.cpp b/src/lora_utils.cpp index 04a2796..a5fdfe1 100644 --- a/src/lora_utils.cpp +++ b/src/lora_utils.cpp @@ -93,7 +93,7 @@ namespace LoRa_Utils { if (state == RADIOLIB_ERR_NONE) { Utils::println("init : LoRa Module ... done!"); } else { - Utils::println("Starting LoRa failed!"); + Utils::println("Starting LoRa failed! State: " + String(state)); while (true); } }