|
@@ -655,12 +655,9 @@ static void lcd_implementation_status_screen() {
|
655
|
655
|
#if ENABLED(FILAMENT_LCD_DISPLAY)
|
656
|
656
|
strcpy(wstring, ftostr12ns(filament_width_meas));
|
657
|
657
|
if (parser.volumetric_enabled)
|
658
|
|
- strcpy(mstring, itostr3(100.0 * filament_width_meas / filament_width_nominal));
|
|
658
|
+ strcpy(mstring, itostr3(100.0 * planner.volumetric_area_nominal / planner.volumetric_multiplier[FILAMENT_SENSOR_EXTRUDER_NUM]));
|
659
|
659
|
else
|
660
|
660
|
strcpy_P(mstring, PSTR("---"));
|
661
|
|
- // Alternatively, show the ratio between cross-sectional areas:
|
662
|
|
- //strcpy(mstring, itostr3(100.0 / CIRCLE_AREA(filament_width_nominal * 0.5)
|
663
|
|
- // / planner.volumetric_multiplier[FILAMENT_SENSOR_EXTRUDER_NUM]));
|
664
|
661
|
#endif
|
665
|
662
|
}
|
666
|
663
|
|