소스 검색

eeprom error message

PavelSindler 7 년 전
부모
커밋
effe6126be
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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;
 			}
 		}