Compile warning when building the RDMSerialRecv.ino sample -
After updating Arduino AVR Boards to version 1.6.23, which fixes most of the EEPROM related warnings there is a single warning remaining when building the RDMSerialRecv sample at EEPROM.h:145 that
static EEPROMClass EEPROM is unused :(
It appears the the sample #includes EEPROM.h but does not actually make use of the resulting instance, thus the compiler, quite rightly, complains that EEPROM is unused.
Compile warning when building the RDMSerialRecv.ino sample -
After updating Arduino AVR Boards to version 1.6.23, which fixes most of the EEPROM related warnings there is a single warning remaining when building the RDMSerialRecv sample at EEPROM.h:145 that
static EEPROMClass EEPROM
is unused :(It appears the the sample
#include
sEEPROM.h
but does not actually make use of the resulting instance, thus the compiler, quite rightly, complains thatEEPROM
is unused.Fix is simply to remove the line '#include`