diff options
Diffstat (limited to 'Tonokip_Firmware')
-rw-r--r-- | Tonokip_Firmware/Tonokip_Firmware.pde | 2 | ||||
-rw-r--r-- | Tonokip_Firmware/configuration.h | 3 |
2 files changed, 3 insertions, 2 deletions
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 |