Skip to content

Commit

Permalink
馃悰 Fix kinetic ABL mesh after refactor (MarlinFirmware#24107)
Browse files Browse the repository at this point in the history
  • Loading branch information
tombrazier committed Apr 29, 2022
1 parent e633ef8 commit 60b6df4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions Marlin/src/feature/bedlevel/abl/bbl.h
Expand Up @@ -24,6 +24,7 @@
#include "../../../inc/MarlinConfigPre.h"

class LevelingBilinear {
private:
static xy_pos_t grid_spacing, grid_start;
static xy_float_t grid_factor;
static bed_mesh_t z_values;
Expand Down
4 changes: 4 additions & 0 deletions Marlin/src/gcode/bedlevel/abl/G29.cpp
Expand Up @@ -507,6 +507,10 @@ G29_TYPE GcodeSuite::G29() {
// Can't re-enable (on error) until the new grid is written
abl.reenable = false;
}

// Pre-populate local Z values from the stored mesh
TERN_(IS_KINEMATIC, COPY(abl.z_values, Z_VALUES_ARR));

#endif // AUTO_BED_LEVELING_BILINEAR

} // !g29_in_progress
Expand Down
5 changes: 2 additions & 3 deletions Marlin/src/lcd/extui/dgus_reloaded/DGUSScreenHandler.cpp
Expand Up @@ -200,7 +200,7 @@ void DGUSScreenHandler::StoreSettings(char *buff) {
data.initialized = true;
data.volume = dgus_display.GetVolume();
data.brightness = dgus_display.GetBrightness();
data.abl = (ExtUI::getLevelingActive() && ExtUI::getMeshValid());
data.abl_okay = (ExtUI::getLevelingActive() && ExtUI::getMeshValid());

memcpy(buff, &data, sizeof(data));
}
Expand All @@ -216,8 +216,7 @@ void DGUSScreenHandler::LoadSettings(const char *buff) {
dgus_display.SetBrightness(data.initialized ? data.brightness : DGUS_DEFAULT_BRIGHTNESS);

if (data.initialized) {
leveling_active = (data.abl && ExtUI::getMeshValid());

leveling_active = (data.abl_okay && ExtUI::getMeshValid());
ExtUI::setLevelingActive(leveling_active);
}
}
Expand Down
2 changes: 1 addition & 1 deletion Marlin/src/lcd/extui/dgus_reloaded/DGUSScreenHandler.h
Expand Up @@ -134,7 +134,7 @@ class DGUSScreenHandler {
bool initialized;
uint8_t volume;
uint8_t brightness;
bool abl;
bool abl_okay;
} eeprom_data_t;
};

Expand Down

0 comments on commit 60b6df4

Please sign in to comment.