summaryrefslogtreecommitdiff
path: root/Tonokip_Firmware/configuration.h
diff options
context:
space:
mode:
authorEmanuele Caruso <emanuele.caruso@gmail.com>2011-06-06 19:59:47 +0200
committerEmanuele Caruso <emanuele.caruso@gmail.com>2011-06-06 19:59:47 +0200
commit8c4f65709535b76e322516d6d7506eb430ca6d0b (patch)
tree070603d2ffbf3365bff54c58b8fdb31322092deb /Tonokip_Firmware/configuration.h
parentc475cc2062969380e15358e8c0cd3f7654a64878 (diff)
Added safety feature to DISABLE_CHECK_DURING_TRAVEL feature, which allows to define a max time in milliseconds after which the travel move is not considered so
Diffstat (limited to 'Tonokip_Firmware/configuration.h')
-rw-r--r--Tonokip_Firmware/configuration.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Tonokip_Firmware/configuration.h b/Tonokip_Firmware/configuration.h
index 0d4556e..86c9f39 100644
--- a/Tonokip_Firmware/configuration.h
+++ b/Tonokip_Firmware/configuration.h
@@ -51,7 +51,8 @@ long max_travel_acceleration_units_per_sq_second[] = {500,500,50}; // X, Y, Z ma
#endif
//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
+//It also defines the max milliseconds interval after which a travel move is not considered so for the sake of this feature.
+#define DISABLE_CHECK_DURING_TRAVEL 1000
//Experimental temperature smoothing - only uncomment this if your temp readings are noisy
//#define SMOOTHING 1
@@ -151,6 +152,7 @@ const int Z_MAX_LENGTH = 100;
//#define DEBUG_RAMP_ACCELERATION //Enable this to debug all constant acceleration info
//#define DEBUG_MOVE_TIME //Enable this to time each move and print the result
//#define DEBUG_HEAT_MGMT //Enable this to debug heat management. WARNING, this will cause axes to jitter!
+ //#define DEBUG_DISABLE_CHECK_DURING_TRAVEL //Debug the namesake feature, see above in this file
#endif
#endif