mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-02-18 07:10:58 +00:00
Don't display M421 values for UBL at startup
It takes 20 seconds to display the mesh values at startup... If we are going to display this information at startup, we should find a more terse way to do it. Perhaps displaying an entire row of the mesh at a time makes sense?
This commit is contained in:
parent
fbc3fdb490
commit
58775cc694
1 changed files with 3 additions and 3 deletions
|
@ -2219,9 +2219,9 @@ void MarlinSettings::reset() {
|
|||
SERIAL_ECHOPAIR("EEPROM can hold ", calc_num_meshes());
|
||||
SERIAL_ECHOLNPGM(" meshes.\n");
|
||||
}
|
||||
|
||||
ubl.report_current_mesh();
|
||||
|
||||
|
||||
// ubl.report_current_mesh(PORTVAR_SOLO); // This is too verbose for large mesh's. A better (more terse)
|
||||
// solution needs to be found.
|
||||
#elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
|
||||
|
||||
if (leveling_is_valid()) {
|
||||
|
|
Loading…
Reference in a new issue