From b0c8120fcc5d107b808bd7f85252c9235bd432b7 Mon Sep 17 00:00:00 2001
From: Nicolas Rossi <nixouille@gmail.com>
Date: Sat, 3 Aug 2013 13:09:53 +0200
Subject: [PATCH] Added feedrate setting in exemple config for manual moves
 from panel

---
 Marlin/example_configurations/delta/Configuration_adv.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/Marlin/example_configurations/delta/Configuration_adv.h b/Marlin/example_configurations/delta/Configuration_adv.h
index f279b0e213..d3c2d1939b 100644
--- a/Marlin/example_configurations/delta/Configuration_adv.h
+++ b/Marlin/example_configurations/delta/Configuration_adv.h
@@ -195,6 +195,11 @@
 #define DEFAULT_MINIMUMFEEDRATE       0.0     // minimum feedrate
 #define DEFAULT_MINTRAVELFEEDRATE     0.0
 
+// Feedrates for manual moves along X, Y, Z, E from panel
+#ifdef ULTIPANEL
+#define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60}  // set the speeds for manual moves (mm/min)
+#endif
+
 // minimum time in microseconds that a movement needs to take if the buffer is emptied.
 #define DEFAULT_MINSEGMENTTIME        20000
 
-- 
GitLab