filament fails counter fixed

This commit is contained in:
PavelSindler 2018-01-12 20:21:07 +01:00
parent 6643f77648
commit 23b78da2f5

View file

@ -261,6 +261,9 @@ void fsensor_update()
else*/ else*/
{ {
fsensor_stop_and_save_print(); fsensor_stop_and_save_print();
uint8_t ferror_count = eeprom_read_byte((uint8_t*)EEPROM_FERROR_COUNT);
ferror_count++;
eeprom_update_byte((uint8_t*)EEPROM_FERROR_COUNT, ferror_count);
enquecommand_front_P((PSTR("M600"))); enquecommand_front_P((PSTR("M600")));
fsensor_M600 = true; fsensor_M600 = true;
fsensor_enabled = false; fsensor_enabled = false;