From bdf475b6e7e24ea0a67065a95aa1b64e93c4478b Mon Sep 17 00:00:00 2001 From: Emanuele Caruso Date: Sun, 24 Apr 2011 19:25:30 +0200 Subject: Restored acceleration configuration values to the previous more conservative defaults --- Tonokip_Firmware/configuration.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'Tonokip_Firmware/configuration.h') diff --git a/Tonokip_Firmware/configuration.h b/Tonokip_Firmware/configuration.h index 819c2c3..362c2d2 100644 --- a/Tonokip_Firmware/configuration.h +++ b/Tonokip_Firmware/configuration.h @@ -9,9 +9,11 @@ #define SDSUPPORT 1 //Acceleration settings -float full_velocity_units = 0.6; // the units between minimum and G1 move feedrate -float min_units_per_second = 60.0; // the minimum feedrate -float min_constant_speed_units = 0.6; // the minimum units of an accelerated move that must be done at constant speed +float full_velocity_units = 10; // the units between minimum and G1 move feedrate +float min_units_per_second = 35.0; // the minimum feedrate +float min_constant_speed_units = 2; // the minimum units of an accelerated move that must be done at constant speed + // Note that if the move is shorter than this value, acceleration won't be perfomed, + // but will be done at the minimum between min_units_per_seconds and move feedrate speeds. // AD595 THERMOCOUPLE SUPPORT UNTESTED... USE WITH CAUTION!!!! -- cgit v1.2.1 From d432e22dc1130325f91139c84c4abe63edd38e75 Mon Sep 17 00:00:00 2001 From: Emanuele Caruso Date: Mon, 25 Apr 2011 23:35:00 +0200 Subject: Added separate acceleration configuration parameter for travel moves --- Tonokip_Firmware/configuration.h | 1 + 1 file changed, 1 insertion(+) (limited to 'Tonokip_Firmware/configuration.h') diff --git a/Tonokip_Firmware/configuration.h b/Tonokip_Firmware/configuration.h index 362c2d2..44d690d 100644 --- a/Tonokip_Firmware/configuration.h +++ b/Tonokip_Firmware/configuration.h @@ -10,6 +10,7 @@ //Acceleration settings float full_velocity_units = 10; // the units between minimum and G1 move feedrate +float travel_move_full_velocity_units = 3; // used for travel moves float min_units_per_second = 35.0; // the minimum feedrate float min_constant_speed_units = 2; // the minimum units of an accelerated move that must be done at constant speed // Note that if the move is shorter than this value, acceleration won't be perfomed, -- cgit v1.2.1 From 3a57b653387a21414b17d6ffebefb6ab94b184da Mon Sep 17 00:00:00 2001 From: Emanuele Caruso Date: Mon, 25 Apr 2011 23:35:00 +0200 Subject: Added separate acceleration configuration parameter for travel moves --- Tonokip_Firmware/configuration.h | 1 + 1 file changed, 1 insertion(+) (limited to 'Tonokip_Firmware/configuration.h') diff --git a/Tonokip_Firmware/configuration.h b/Tonokip_Firmware/configuration.h index 362c2d2..44d690d 100644 --- a/Tonokip_Firmware/configuration.h +++ b/Tonokip_Firmware/configuration.h @@ -10,6 +10,7 @@ //Acceleration settings float full_velocity_units = 10; // the units between minimum and G1 move feedrate +float travel_move_full_velocity_units = 3; // used for travel moves float min_units_per_second = 35.0; // the minimum feedrate float min_constant_speed_units = 2; // the minimum units of an accelerated move that must be done at constant speed // Note that if the move is shorter than this value, acceleration won't be perfomed, -- cgit v1.2.1