summaryrefslogtreecommitdiff
path: root/Tonokip_Firmware
diff options
context:
space:
mode:
authorEmanuele Caruso <emanuele.caruso@gmail.com>2011-06-05 07:35:35 +0200
committerEmanuele Caruso <emanuele.caruso@gmail.com>2011-06-05 07:35:35 +0200
commit6e246d4ead55f27d8e2942d7fa6b75726badae3b (patch)
tree01c93a6d23b8e8451c07b8a4a8a423e06eab5bab /Tonokip_Firmware
parentdf7e8feffa8218d4ad83d1174802bae637c98530 (diff)
Heat management now performed between moves if DISABLE_CHECK_DURING_TRAVEL is enabled
Diffstat (limited to 'Tonokip_Firmware')
-rw-r--r--Tonokip_Firmware/Tonokip_Firmware.pde2
-rw-r--r--Tonokip_Firmware/configuration.h3
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