From 73617226b30047f74a3b78938897f0aa68860058 Mon Sep 17 00:00:00 2001 From: "jacob.eva" Date: Wed, 6 Mar 2024 16:15:56 +0000 Subject: [PATCH] Fix eeprom_read func not found error --- Utilities.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Utilities.h b/Utilities.h index dcb085e..816df3b 100644 --- a/Utilities.h +++ b/Utilities.h @@ -43,6 +43,10 @@ sx128x *LoRa = &sx128x_modem; #include "Framing.h" #include "MD5.h" +#if !HAS_EEPROM && MCU_VARIANT == MCU_NRF52 +uint8_t eeprom_read(uint32_t mapped_addr); +#endif + #if HAS_DISPLAY == true #include "Display.h" #endif