Browse Source

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?
Roxy-3D 7 years ago
parent
commit
71df1f7f57
No account linked to committer's email address
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/src/module/configuration_store.cpp

+ 2
- 2
Marlin/src/module/configuration_store.cpp View File

@@ -2237,8 +2237,8 @@ void MarlinSettings::reset(PORTARG_SOLO) {
2237 2237
           SERIAL_ECHOLNPGM_P(port, " meshes.\n");
2238 2238
         }
2239 2239
 
2240
-        ubl.report_current_mesh(PORTVAR_SOLO);
2241
-
2240
+//      ubl.report_current_mesh(PORTVAR_SOLO);   // This is too verbose for large mesh's.   A better (more terse)
2241
+                                                 // solution needs to be found.
2242 2242
       #elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
2243 2243
 
2244 2244
         if (leveling_is_valid()) {

Loading…
Cancel
Save