Fix eeprom_read func not found error

This commit is contained in:
jacob.eva 2024-03-06 16:15:56 +00:00
parent ed58d8e466
commit 73617226b3
No known key found for this signature in database
GPG Key ID: 0B92E083BBCCAA1E

View File

@ -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