|
@@ -327,6 +327,7 @@ static_assert(sizeof(Sheets) == EEPROM_SHEETS_SIZEOF, "Sizeof(Sheets) is not EEP
|
|
|
| 0x0D05 3333 | uint32_t | EEPROM_JOB_ID | ??? | 00 00 00 00h | Job ID used by host software | D3 only | D3 Ax0d05 C4
|
|
|
| 0x0D04 3332 | uint8_t | EEPROM_ECOOL_ENABLE | ffh 255 | ^ | Disable extruder motor scaling for non-farm print | LCD menu | D3 Ax0d04 C1
|
|
|
| ^ | ^ | ^ | 2ah 42 | ^ | Enable extruder motor scaling for non-farm print | ^ | D3 Ax0d04 C1
|
|
|
+| 0x0D03 3321 | uint8_t | EEPROM_CRASH_ACKNOWLEDGED | 01h 1 | ff/00 | Disable crash report after first acknowledgment | D21/D22 | D3 Ax0d03 C1
|
|
|
|
|
|
| Address begin | Bit/Type | Name | Valid values | Default/FactoryReset | Description | Gcode/Function| Debug code
|
|
|
| :--: | :--: | :--: | :--: | :--: | :--: | :--: | :--:
|
|
@@ -541,9 +542,10 @@ static Sheets * const EEPROM_Sheets_base = (Sheets*)(EEPROM_SHEETS_BASE);
|
|
|
#define EEPROM_JOB_ID (EEPROM_UVLO_TRAVEL_ACCELL-4) //uint32_t
|
|
|
|
|
|
#define EEPROM_ECOOL_ENABLE (EEPROM_JOB_ID-1) // uint8_t
|
|
|
+#define EEPROM_CRASH_ACKNOWLEDGED (EEPROM_ECOOL_ENABLE-1) // uint8_t
|
|
|
|
|
|
//This is supposed to point to last item to allow EEPROM overrun check. Please update when adding new items.
|
|
|
-#define EEPROM_LAST_ITEM EEPROM_ECOOL_ENABLE
|
|
|
+#define EEPROM_LAST_ITEM EEPROM_CRASH_ACKNOWLEDGED
|
|
|
// !!!!!
|
|
|
// !!!!! this is end of EEPROM section ... all updates MUST BE inserted before this mark !!!!!
|
|
|
// !!!!!
|