mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-23 12:04:19 +00:00
Tweak powerloss info
This commit is contained in:
parent
b8947ac8a5
commit
9fe781ccaf
@ -185,7 +185,7 @@ void PrintJobRecovery::save(const bool force/*=false*/) {
|
|||||||
#if EXTRUDERS > 1
|
#if EXTRUDERS > 1
|
||||||
for (int8_t e = 0; e < EXTRUDERS; e++) info.filament_size[e] = planner.filament_size[e];
|
for (int8_t e = 0; e < EXTRUDERS; e++) info.filament_size[e] = planner.filament_size[e];
|
||||||
#else
|
#else
|
||||||
if (parser.volumetric_enabled) info.filament_size = planner.filament_size[active_extruder];
|
if (parser.volumetric_enabled) info.filament_size[0] = planner.filament_size[active_extruder];
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -331,7 +331,7 @@ void PrintJobRecovery::resume() {
|
|||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
if (info.volumetric_enabled) {
|
if (info.volumetric_enabled) {
|
||||||
dtostrf(info.filament_size, 1, 3, str_1);
|
dtostrf(info.filament_size[0], 1, 3, str_1);
|
||||||
sprintf_P(cmd, PSTR("M200 D%s"), str_1);
|
sprintf_P(cmd, PSTR("M200 D%s"), str_1);
|
||||||
gcode.process_subcommands_now(cmd);
|
gcode.process_subcommands_now(cmd);
|
||||||
}
|
}
|
||||||
|
@ -61,11 +61,7 @@ typedef struct {
|
|||||||
|
|
||||||
#if DISABLED(NO_VOLUMETRICS)
|
#if DISABLED(NO_VOLUMETRICS)
|
||||||
bool volumetric_enabled;
|
bool volumetric_enabled;
|
||||||
#if EXTRUDERS > 1
|
float filament_size[EXTRUDERS];
|
||||||
float filament_size[EXTRUDERS];
|
|
||||||
#else
|
|
||||||
float filament_size;
|
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if HAS_HOTEND
|
#if HAS_HOTEND
|
||||||
|
Loading…
Reference in New Issue
Block a user