From 71df1f7f5724d2f18865969fc7c2dc1625b391f2 Mon Sep 17 00:00:00 2001 From: Roxy-3D Date: Tue, 17 Jul 2018 17:19:52 -0500 Subject: [PATCH] Don't display M421 information for UBL at startup It takes too long to display the mesh data for large mesh's at startup. We should consider ways to speed this up. Perhaps it makes sense to display an entire row of the mesh instead of just one mesh point? --- Marlin/src/module/configuration_store.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Marlin/src/module/configuration_store.cpp b/Marlin/src/module/configuration_store.cpp index 52c64330c6..f9fdbd3800 100644 --- a/Marlin/src/module/configuration_store.cpp +++ b/Marlin/src/module/configuration_store.cpp @@ -2237,8 +2237,8 @@ void MarlinSettings::reset(PORTARG_SOLO) { SERIAL_ECHOLNPGM_P(port, " meshes.\n"); } - ubl.report_current_mesh(PORTVAR_SOLO); - +// 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()) {