Sensorless homing sensitivity for Pro/ProXT without dual extruder

This commit is contained in:
Brian Kahl 2021-08-30 13:15:29 -05:00
parent 3b67787655
commit 7930888c73
2 changed files with 8 additions and 3 deletions

View File

@ -97,7 +97,7 @@
// Author info of this build printed to the host during boot and M115
#define STRING_CONFIG_H_AUTHOR "Lulzbot" // Who made the changes.
#define CUSTOM_VERSION_FILE Version.h // Path from the root directory (no quotes)
#define LULZBOT_FW_VERSION "2.0.9.0.2"
#define LULZBOT_FW_VERSION "2.0.9.0.3"
/**
* *** VENDORS PLEASE READ ***

View File

@ -2997,8 +2997,13 @@
#if EITHER(SENSORLESS_HOMING, SENSORLESS_PROBING)
// TMC2209: 0...255. TMC2130: -64...63
#if ANY(TAZPro, TAZProXT)
#define X_STALL_SENSITIVITY 4
#define Y_STALL_SENSITIVITY 4
#if ANY(LULZBOT_UNIVERSAL_TOOLHEAD, TOOLHEAD_M175)
#define X_STALL_SENSITIVITY 3
#define Y_STALL_SENSITIVITY 5
#else
#define X_STALL_SENSITIVITY 6
#define Y_STALL_SENSITIVITY 5
#endif
#elif ENABLED(MiniV2)
#define X_STALL_SENSITIVITY 3
#define Y_STALL_SENSITIVITY 3