summaryrefslogtreecommitdiff
path: root/Tonokip_Firmware
diff options
context:
space:
mode:
authorEmanuele Caruso <emanuele.caruso@gmail.com>2011-05-23 20:03:47 +0200
committerEmanuele Caruso <emanuele.caruso@gmail.com>2011-05-23 20:03:47 +0200
commit1139131f72f97ac5d6de72ada5030d82fc98eb9f (patch)
tree6abb9ab48565064931706435947585978eb66737 /Tonokip_Firmware
parent006407585e6dcfa8a5dee5c4335ebabbe8fafef7 (diff)
Changed configuration values to better ones, according to my experience, which should also help avoid missing steps
Diffstat (limited to 'Tonokip_Firmware')
-rw-r--r--Tonokip_Firmware/configuration.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Tonokip_Firmware/configuration.h b/Tonokip_Firmware/configuration.h
index 2643338..f2d23f0 100644
--- a/Tonokip_Firmware/configuration.h
+++ b/Tonokip_Firmware/configuration.h
@@ -27,8 +27,8 @@
//Acceleration settings
#ifdef RAMP_ACCELERATION
//X, Y, Z, E maximum start speed for accelerated moves. E default values are good for skeinforge 40+, for older versions raise them a lot.
-float max_start_speed_units_per_second[] = {35.0,35.0,0.2,10.0};
-long max_acceleration_units_per_sq_second[] = {750,750,50,4000}; // X, Y, Z and E max acceleration in mm/s^2 for printing moves or retracts
+float max_start_speed_units_per_second[] = {25.0,25.0,0.2,10.0};
+long max_acceleration_units_per_sq_second[] = {3000,3000,50,10000}; // X, Y, Z and E max acceleration in mm/s^2 for printing moves or retracts
long max_travel_acceleration_units_per_sq_second[] = {1500,1500,50}; // X, Y, Z max acceleration in mm/s^2 for travel moves
#endif
#ifdef EXP_ACCELERATION
@@ -54,10 +54,10 @@ float min_constant_speed_units = 2; // the minimum units of an accelerated move
#endif
//How often should the heater check for new temp readings, in milliseconds
-#define HEATER_CHECK_INTERVAL 50
+#define HEATER_CHECK_INTERVAL 500
#define BED_CHECK_INTERVAL 5000
-//Uncomment the following line to disable heat management during acceleration
-//#define DISABLE_CHECK_DURING_ACC
+//Comment the following line to enable heat management during acceleration
+#define DISABLE_CHECK_DURING_ACC
#ifndef DISABLE_CHECK_DURING_ACC
//Uncomment the following line to disable heat management during the move
//#define DISABLE_CHECK_DURING_MOVE