Skip to content

Commit

Permalink
Ender 3 V2: Inject 'G28 O' before G29 (#18767)
Browse files Browse the repository at this point in the history
  • Loading branch information
fleek authored Jul 25, 2020
1 parent 97c6559 commit 0a81eb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/lcd/dwin/dwin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2375,7 +2375,7 @@ void HMI_Control(void) {
void HMI_Leveling(void) {
Popup_Window_Leveling();
DWIN_UpdateLCD();
queue.inject_P(PSTR("G29"));
queue.inject_P(PSTR("G28O\nG29"));
}

/* Axis Move */
Expand Down

1 comment on commit 0a81eb1

@CRCinAU
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggest this be queue.inject_P(PSTR("G28 O\nG29\nM420 S1")); - as the grid doesn't automatically enable after probing from the menu with the Ender 3 V2.

Please sign in to comment.