Browse Source

Added feedrate setting in exemple config for manual moves from panel

Nicolas Rossi 12 years ago
parent
commit
b0c8120fcc
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      Marlin/example_configurations/delta/Configuration_adv.h

+ 5
- 0
Marlin/example_configurations/delta/Configuration_adv.h View File

@@ -195,6 +195,11 @@
195 195
 #define DEFAULT_MINIMUMFEEDRATE       0.0     // minimum feedrate
196 196
 #define DEFAULT_MINTRAVELFEEDRATE     0.0
197 197
 
198
+// Feedrates for manual moves along X, Y, Z, E from panel
199
+#ifdef ULTIPANEL
200
+#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60}  // set the speeds for manual moves (mm/min)
201
+#endif
202
+
198 203
 // minimum time in microseconds that a movement needs to take if the buffer is emptied.
199 204
 #define DEFAULT_MINSEGMENTTIME        20000
200 205
 

Loading…
Cancel
Save