From 6e246d4ead55f27d8e2942d7fa6b75726badae3b Mon Sep 17 00:00:00 2001 From: Emanuele Caruso Date: Sun, 5 Jun 2011 07:35:35 +0200 Subject: Heat management now performed between moves if DISABLE_CHECK_DURING_TRAVEL is enabled --- Tonokip_Firmware/Tonokip_Firmware.pde | 2 +- Tonokip_Firmware/configuration.h | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'Tonokip_Firmware') diff --git a/Tonokip_Firmware/Tonokip_Firmware.pde b/Tonokip_Firmware/Tonokip_Firmware.pde index 933b6d2..2530eda 100644 --- a/Tonokip_Firmware/Tonokip_Firmware.pde +++ b/Tonokip_Firmware/Tonokip_Firmware.pde @@ -449,7 +449,7 @@ inline void process_commands() { case 0: // G0 -> G1 case 1: // G1 - #ifdef DISABLE_CHECK_DURING_ACC || DISABLE_CHECK_DURING_MOVE + #ifdef DISABLE_CHECK_DURING_ACC || DISABLE_CHECK_DURING_MOVE || DISABLE_CHECK_DURING_TRAVEL manage_heater(); #endif get_coordinates(); // For X Y Z E F diff --git a/Tonokip_Firmware/configuration.h b/Tonokip_Firmware/configuration.h index 9ba0198..cabfdb3 100644 --- a/Tonokip_Firmware/configuration.h +++ b/Tonokip_Firmware/configuration.h @@ -49,7 +49,8 @@ long max_travel_acceleration_units_per_sq_second[] = {500,500,50}; // X, Y, Z ma //Uncomment the following line to disable heat management during the move //#define DISABLE_CHECK_DURING_MOVE #endif -//Comment the following line to enable heat management during travel moves. Probably this should be commented if using PID. +//Uncomment the following line to disable heat management during travel moves, strongly recommended if you are missing steps mid print. +//Probably this should remain commented if are using PID. #define DISABLE_CHECK_DURING_TRAVEL //Experimental temperature smoothing - only uncomment this if your temp readings are noisy -- cgit v1.2.1