Skip to content

Commit 0b2bfdd

Browse files
fix babystepping
1 parent 4ac0c5d commit 0b2bfdd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

source/Marlin/Configuration_adv.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1667,14 +1667,14 @@
16671667
#if ENABLED(BABYSTEPPING)
16681668
//#define INTEGRATED_BABYSTEPPING // EXPERIMENTAL integration of babystepping into the Stepper ISR
16691669
//#define BABYSTEP_WITHOUT_HOMING
1670-
//#define BABYSTEP_ALWAYS_AVAILABLE // Allow babystepping at all times (not just during movement).
1670+
#define BABYSTEP_ALWAYS_AVAILABLE // Allow babystepping at all times (not just during movement).
16711671
//#define BABYSTEP_XY // Also enable X/Y Babystepping. Not supported on DELTA!
16721672
#define BABYSTEP_INVERT_Z false // Change if Z babysteps should go the other way
16731673
#define BABYSTEP_MILLIMETER_UNITS // Specify BABYSTEP_MULTIPLICATOR_(XY|Z) in mm instead of micro-steps
16741674
#define BABYSTEP_MULTIPLICATOR_Z 0.01f // (steps or mm) Steps or millimeter distance for each Z babystep
16751675
#define BABYSTEP_MULTIPLICATOR_XY 1 // (steps or mm) Steps or millimeter distance for each XY babystep
16761676

1677-
//#define DOUBLECLICK_FOR_Z_BABYSTEPPING // Double-click on the Status Screen for Z Babystepping.
1677+
#define DOUBLECLICK_FOR_Z_BABYSTEPPING // Double-click on the Status Screen for Z Babystepping.
16781678
#if ENABLED(DOUBLECLICK_FOR_Z_BABYSTEPPING)
16791679
#define DOUBLECLICK_MAX_INTERVAL 1250 // Maximum interval between clicks, in milliseconds.
16801680
// Note: Extra time may be added to mitigate controller latency.

source/Marlin/src/lcd/menu/menu.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232

3333
#define DEVICE_NAME "Anycubic Kobra Neo"
34-
#define FIRMWARE_VER "V1.3.3 (NP-Mod V1.3.5)"
34+
#define FIRMWARE_VER "V1.3.3 (NP-Mod V1.3.6)"
3535
#define BUILD_VOLUME "220 x 220 x 250 (mm)"
3636
#define TECH_SUPPORT "github.com/NuclearPhoenixx"
3737

source/Marlin/src/lcd/menu/menu_tune.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,8 +229,8 @@ void menu_tune() {
229229
SUBMENU(MSG_BABYSTEP_Y, []{ _lcd_babystep_go(_lcd_babystep_y); });
230230
#endif
231231
#if ENABLED(BABYSTEP_ZPROBE_OFFSET)
232-
//SUBMENU(MSG_ZPROBE_ZOFFSET, lcd_babystep_zoffset);
233-
EDIT_ITEM(float42_52, MSG_ZPROBE_ZOFFSET, &probe.offset.z, -5.00, 5.00, []{ lcd_babystep_zoffset(); });
232+
SUBMENU(MSG_ZPROBE_ZOFFSET, lcd_babystep_zoffset);
233+
//EDIT_ITEM(float42_52, MSG_ZPROBE_ZOFFSET, &probe.offset.z, -5.00, 5.00, []{ lcd_babystep_zoffset(); });
234234
#else
235235
SUBMENU(MSG_BABYSTEP_Z, lcd_babystep_z);
236236
#endif

0 commit comments

Comments
 (0)