Remove workaround; park position change.

Remove endstop workaround (T1948)
Set filament purge location to coincide with v3 dual purge location (T2115)
master
Marcio Teixeira 6 years ago
parent 744e9dcf5a
commit 0845bc8521

@ -259,10 +259,6 @@
#define LULZBOT_G28_DISABLES_LEVELING_WORKAROUND
#endif
// Marlin 1.1.5 does not respect ENDSTOPS_ALWAYS_ON_DEFAULT at startup,
// as described in T1393
#define LULZBOT_ENDSTOPS_ALWAYS_ON_DEFAULT_WORKAROUND
// Fix for OctoPrint serial buffer overflow when using auto temperature
// report.
// Back port of upstream https://github.com/MarlinFirmware/Marlin/commit/6ed284061580ffc6eef40df391afb30d2f8b45f5
@ -1464,8 +1460,13 @@
#define LULZBOT_ADVANCED_PAUSE_EXTRUDE_FEEDRATE 1
#define LULZBOT_HOME_BEFORE_FILAMENT_CHANGE
#define LULZBOT_PARK_HEAD_ON_PAUSE
#define LULZBOT_PAUSE_PARK_X_POS 10
#define LULZBOT_PAUSE_PARK_Y_POS LULZBOT_Y_MAX_POS - 10
#endif
#if defined(LULZBOT_IS_MINI)
#define LULZBOT_NOZZLE_PARK_POINT { 10, (LULZBOT_Y_MAX_POS - 10), 20 }
#else
// Match the purge location of the v3 dual so a single tray can be used.
#define LULZBOT_NOZZLE_PARK_POINT { 100, 300, 20 }
#endif
/*********************************** WIPER PAD **********************************/

@ -1211,7 +1211,7 @@
#if ENABLED(NOZZLE_PARK_FEATURE)
// Specify a park position as { X, Y, Z }
#define NOZZLE_PARK_POINT { (X_MIN_POS + 10), (Y_MAX_POS - 10), 20 }
#define NOZZLE_PARK_POINT LULZBOT_NOZZLE_PARK_POINT
#define NOZZLE_PARK_XY_FEEDRATE 100 // X and Y axes feedrate in mm/s (also used for delta printers Z axis)
#define NOZZLE_PARK_Z_FEEDRATE 5 // Z axis feedrate in mm/s (not used for delta printers)
#endif

@ -14675,15 +14675,6 @@ void setup() {
#endif
#endif
#if defined(LULZBOT_ENDSTOPS_ALWAYS_ON_DEFAULT_WORKAROUND)
endstops.enable_globally(
#if ENABLED(ENDSTOPS_ALWAYS_ON_DEFAULT)
true
#else
false
#endif
);
#endif
#if ENABLED(MKS_12864OLED) || ENABLED(MKS_12864OLED_SSD1306)
SET_OUTPUT(LCD_PINS_DC);
OUT_WRITE(LCD_PINS_RS, LOW);

Loading…
Cancel
Save