From 35de65ee1d7e2fb6fab3884041514b028b0a19c7 Mon Sep 17 00:00:00 2001 From: David Ramiro Date: Sat, 17 Nov 2018 22:56:38 +0100 Subject: [PATCH] Fix mesh leveling menu Fixed a typo that caused mesh leveling not to start --- Marlin-AI3M-181117-flipped.hex | 4 ++-- Marlin-AI3M-181117.hex | 4 ++-- Marlin/AnycubicTFT.cpp | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Marlin-AI3M-181117-flipped.hex b/Marlin-AI3M-181117-flipped.hex index a6042e6..4b39fd3 100644 --- a/Marlin-AI3M-181117-flipped.hex +++ b/Marlin-AI3M-181117-flipped.hex @@ -113,9 +113,9 @@ :10070000756465723A2000496E76616C6964206593 :10071000787472756465720A0043616E6E6F74203E :10072000656E746572207375626469723A20004761 -:100730003239205331005370656369616C204D6517 +:100730003239205332005370656369616C204D6516 :100740006E753A204E657874204D65736820506F41 -:10075000696E740A00473239205330005370656364 +:10075000696E740A00473239205331005370656363 :1007600069616C204D656E753A2053746172742016 :100770004D657368204C6576656C696E670A004D3F :1007800031343020533630005370656369616C201A diff --git a/Marlin-AI3M-181117.hex b/Marlin-AI3M-181117.hex index ea95caa..f36a0fa 100644 --- a/Marlin-AI3M-181117.hex +++ b/Marlin-AI3M-181117.hex @@ -113,9 +113,9 @@ :10070000756465723A2000496E76616C6964206593 :10071000787472756465720A0043616E6E6F74203E :10072000656E746572207375626469723A20004761 -:100730003239205331005370656369616C204D6517 +:100730003239205332005370656369616C204D6516 :100740006E753A204E657874204D65736820506F41 -:10075000696E740A00473239205330005370656364 +:10075000696E740A00473239205331005370656363 :1007600069616C204D656E753A2053746172742016 :100770004D657368204C6576656C696E670A004D3F :1007800031343020533630005370656369616C201A diff --git a/Marlin/AnycubicTFT.cpp b/Marlin/AnycubicTFT.cpp index 077d0fc..f725e99 100644 --- a/Marlin/AnycubicTFT.cpp +++ b/Marlin/AnycubicTFT.cpp @@ -218,10 +218,10 @@ void AnycubicTFTClass::HandleSpecialMenu() enqueue_and_echo_commands_P(PSTR("M140 S60")); } else if (strcmp(SelectedDirectory, "")==0) { SERIAL_PROTOCOLLNPGM("Special Menu: Start Mesh Leveling"); - enqueue_and_echo_commands_P(PSTR("G29 S0")); + enqueue_and_echo_commands_P(PSTR("G29 S1")); } else if (strcmp(SelectedDirectory, "")==0) { SERIAL_PROTOCOLLNPGM("Special Menu: Next Mesh Point"); - enqueue_and_echo_commands_P(PSTR("G29 S1")); + enqueue_and_echo_commands_P(PSTR("G29 S2")); } else if (strcmp(SelectedDirectory, "")==0) { SpecialMenu=false; }