We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e91f36 commit 03149b9Copy full SHA for 03149b9
Marlin/src/module/motion.cpp
@@ -128,7 +128,10 @@ xyze_pos_t destination; // {0}
128
// no other feedrate is specified. Overridden for special moves.
129
// Set by the last G0 through G5 command's "F" parameter.
130
// Functions that override this for custom moves *must always* restore it!
131
-feedRate_t feedrate_mm_s = MMM_TO_MMS(1500);
+#ifndef DEFAULT_FEEDRATE_MM_M
132
+ #define DEFAULT_FEEDRATE_MM_M 4000
133
+#endif
134
+feedRate_t feedrate_mm_s = MMM_TO_MMS(DEFAULT_FEEDRATE_MM_M);
135
int16_t feedrate_percentage = 100;
136
137
// Cartesian conversion result goes here:
0 commit comments