diff options
author | Emanuele Caruso <emanuele.caruso@gmail.com> | 2011-05-22 20:38:10 +0200 |
---|---|---|
committer | Emanuele Caruso <emanuele.caruso@gmail.com> | 2011-05-22 20:38:10 +0200 |
commit | 8a2c2233cb0a8c14a60bc3539ca9ffd7971baa3c (patch) | |
tree | c430dc8aa34c559822cb9c7eb6032241e8566ed4 | |
parent | 2433b0459a2f8b9767d401773ca3992f7efcc253 (diff) |
Fixed bad default configuration value that forced relative E. Changed back to default
-rw-r--r-- | Tonokip_Firmware/configuration.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tonokip_Firmware/configuration.h b/Tonokip_Firmware/configuration.h index 61072dc..2643338 100644 --- a/Tonokip_Firmware/configuration.h +++ b/Tonokip_Firmware/configuration.h @@ -96,7 +96,7 @@ float min_constant_speed_units = 2; // the minimum units of an accelerated move //Calibration variables const int NUM_AXIS = 4; // The axis order in all axis related arrays is X, Y, Z, E -bool axis_relative_modes[] = {false, false, false, true}; +bool axis_relative_modes[] = {false, false, false, false}; float axis_steps_per_unit[] = {80.376,80.376,3200/1.25,16}; float max_feedrate[] = {200000, 200000, 240, 500000}; //mmm, acceleration! |