Hibiscus SD print keep Z axis energized (T2343)

Hibiscus will no longer de-energize the Z axis after an SD card print.
master
Marcio Teixeira 6 years ago
parent fd8a9286a2
commit fefb68a971

@ -13,7 +13,7 @@
* got disabled.
*/
#define LULZBOT_FW_VERSION ".23" // Change this with each update
#define LULZBOT_FW_VERSION ".24" // Change this with each update
#if ( \
!defined(LULZBOT_Gladiola_Mini) && \
@ -442,9 +442,11 @@
#if defined(LULZBOT_USE_Z_BELT)
#define LULZBOT_DISABLE_INACTIVE_Z false
#define LULZBOT_ENABLE_Z_MOTOR_ON_STARTUP enable_Z();
#define LULZBOT_SD_FINISHED_RELEASECOMMAND "M84 X Y E"
#else
#define LULZBOT_DISABLE_INACTIVE_Z true
#define LULZBOT_ENABLE_Z_MOTOR_ON_STARTUP
#define LULZBOT_SD_FINISHED_RELEASECOMMAND "M84 X Y Z E"
#endif
/*********************** AUTOLEVELING / BED PROBE *******************************/

@ -521,7 +521,7 @@
//#define SD_DETECT_INVERTED LULZBOT_DISABLE_SD_DETECT_INVERTED
#define SD_FINISHED_STEPPERRELEASE true // Disable steppers when SD Print is finished
#define SD_FINISHED_RELEASECOMMAND "M84 X Y Z E" // You might want to keep the z enabled so your bed stays in place.
#define SD_FINISHED_RELEASECOMMAND LULZBOT_SD_FINISHED_RELEASECOMMAND // You might want to keep the z enabled so your bed stays in place.
// Reverse SD sort to show "more recent" files first, according to the card's FAT.
// Since the FAT gets out of order with usage, SDCARD_SORT_ALPHA is recommended.

Loading…
Cancel
Save