summaryrefslogtreecommitdiff
path: root/Sprinter/store_eeprom.h
diff options
context:
space:
mode:
authormidopple <mdoppler@gmx.at>2012-06-12 18:23:14 +0200
committermidopple <mdoppler@gmx.at>2012-06-12 18:23:14 +0200
commit02eb9b909994a6049eb519427b47258d133c8da2 (patch)
treee57d47cffa69463e7e9cc43e7f1d1a5d5b862536 /Sprinter/store_eeprom.h
parentcbaf809d76b3143ea67dd180647fcbde1868d29d (diff)
Version 1.3.19T
- Set maximum acceleration. If "steps per unit" is Change the acc were not recalculatet - Extra Parameter for Max Extruder Jerk - New Parameter (max_e_jerk) in EEPROM --> Default settings after update !!
Diffstat (limited to 'Sprinter/store_eeprom.h')
-rw-r--r--Sprinter/store_eeprom.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Sprinter/store_eeprom.h b/Sprinter/store_eeprom.h
index cff25d3..3b1ac6d 100644
--- a/Sprinter/store_eeprom.h
+++ b/Sprinter/store_eeprom.h
@@ -27,7 +27,7 @@
// the default values are used whenever there is a change to the data, to prevent
// wrong data being written to the variables.
// ALSO: always make sure the variables in the Store and retrieve sections are in the same order.
-#define EEPROM_VERSION "S01"
+#define EEPROM_VERSION "S02"
extern float axis_steps_per_unit[4];
@@ -39,6 +39,7 @@ extern float mintravelfeedrate;
extern float minimumfeedrate;
extern float max_xy_jerk;
extern float max_z_jerk;
+extern float max_e_jerk;
extern void EEPROM_RetrieveSettings(bool def, bool printout );