Skip to content

Commit 03149b9

Browse files
committed
🚸 Faster default Marlin feedrate
1 parent 6e91f36 commit 03149b9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Marlin/src/module/motion.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,10 @@ xyze_pos_t destination; // {0}
128128
// no other feedrate is specified. Overridden for special moves.
129129
// Set by the last G0 through G5 command's "F" parameter.
130130
// Functions that override this for custom moves *must always* restore it!
131-
feedRate_t feedrate_mm_s = MMM_TO_MMS(1500);
131+
#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);
132135
int16_t feedrate_percentage = 100;
133136

134137
// Cartesian conversion result goes here:

0 commit comments

Comments
 (0)