|
@@ -196,6 +196,7 @@ static void lcd_status_screen()
|
196
|
196
|
lcd_quick_feedback();
|
197
|
197
|
}
|
198
|
198
|
|
|
199
|
+#ifdef ULTIPANEL_FEEDMULTIPLY
|
199
|
200
|
// Dead zone at 100% feedrate
|
200
|
201
|
if ((feedmultiply < 100 && (feedmultiply + int(encoderPosition)) > 100) ||
|
201
|
202
|
(feedmultiply > 100 && (feedmultiply + int(encoderPosition)) < 100))
|
|
@@ -219,6 +220,7 @@ static void lcd_status_screen()
|
219
|
220
|
feedmultiply += int(encoderPosition);
|
220
|
221
|
encoderPosition = 0;
|
221
|
222
|
}
|
|
223
|
+#endif//ULTIPANEL_FEEDMULTIPLY
|
222
|
224
|
|
223
|
225
|
if (feedmultiply < 10)
|
224
|
226
|
feedmultiply = 10;
|