mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-27 13:56:24 +00:00
🚸 Faster default Marlin feedrate
This commit is contained in:
parent
6e91f3608b
commit
03149b973e
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user