Browse Source

eeprom error message

PavelSindler 7 years ago
parent
commit
effe6126be
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Firmware/ConfigurationStore.cpp

+ 1 - 1
Firmware/ConfigurationStore.cpp

@@ -19,7 +19,7 @@ void _EEPROM_writeData(int &pos, uint8_t* value, uint8_t size)
 		if (v != eeprom_read_byte(p)) {
 			eeprom_write_byte(p, v);
 			if (eeprom_read_byte(p) != v) {
-				//add error message			
+				SERIAL_ECHOLNPGM("EEPROM Error");
 				return;
 			}
 		}