Skip to content

Commit

Permalink
🚸 Faster default Marlin feedrate
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed May 17, 2023
1 parent 6e91f36 commit 03149b9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Marlin/src/module/motion.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,10 @@ xyze_pos_t destination; // {0}
// no other feedrate is specified. Overridden for special moves.
// Set by the last G0 through G5 command's "F" parameter.
// Functions that override this for custom moves *must always* restore it!
feedRate_t feedrate_mm_s = MMM_TO_MMS(1500);
#ifndef DEFAULT_FEEDRATE_MM_M
#define DEFAULT_FEEDRATE_MM_M 4000
#endif
feedRate_t feedrate_mm_s = MMM_TO_MMS(DEFAULT_FEEDRATE_MM_M);
int16_t feedrate_percentage = 100;

// Cartesian conversion result goes here:
Expand Down

0 comments on commit 03149b9

Please sign in to comment.