Expected behavior: [What you expect to happen]
Actual behavior: [What actually happens]
Configuration.h and Configuration_adv.h files.i use bugfix2 when uncomment #define BABYSTEP_ZPROBE_OFFSET // Combine M851 Z and Babystepping
error in compile sketchsrclcdmenumenu.cpp: In function 'void lcd_babystep_zoffset()':
sketchsrclcdmenumenu.cpp:374:9: error: 'thermalManager' was not declared in this scope
thermalManager.babystep_axis(Z_AXIS, babystep_increment);
please guide me
Please supply your configuration files. How recent is your bugfix-2.0.x? Please download the latest version and confirm that the problem still exists.
@gloomyandy THERMAL_PROTECTION_HOTENDS and THERMAL_PROTECTION_HOTENDS been disabled
dependency exists between the two functions
Try
At the top of \src\lcd\menu\menu.cpp
@@ -33,11 +33,11 @@
#if ENABLED(EEPROM_SETTINGS)
#include "../../module/configuration_store.h"
#endif
-#if WATCH_HOTENDS || WATCH_THE_BED
+#if WATCH_HOTENDS || WATCH_THE_BED || ENABLED(BABYSTEP_ZPROBE_OFFSET)
#include "../../module/temperature.h"
#endif
#if ENABLED(BABYSTEP_ZPROBE_OFFSET)
#include "../../module/probe.h"
it is last version bugfix2 and thermal protection for both hotend and bed are disabled
Try
At the top of\src\lcd\menu\menu.cpp@@ -33,11 +33,11 @@ #if ENABLED(EEPROM_SETTINGS) #include "../../module/configuration_store.h" #endif -#if WATCH_HOTENDS || WATCH_THE_BED +#if WATCH_HOTENDS || WATCH_THE_BED || ENABLED(BABYSTEP_ZPROBE_OFFSET) #include "../../module/temperature.h" #endif #if ENABLED(BABYSTEP_ZPROBE_OFFSET) #include "../../module/probe.h"
it's work thank you.
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
Please supply your configuration files. How recent is your bugfix-2.0.x? Please download the latest version and confirm that the problem still exists.