Merge pull request #5446 from sliptonic/bug/marlinpost

[Path] fix default unit string for mm/min
This commit is contained in:
sliptonic
2022-01-26 18:32:10 -06:00
committed by GitHub

View File

@@ -60,7 +60,7 @@ MOTION_MODE = "G90" # G90 only, for absolute moves
WORK_PLANE = "G17" # G17 only, XY plane, for vertical milling
UNITS = "G21" # G21 only, for metric
UNIT_FORMAT = "mm"
UNIT_FEED_FORMAT = "mm/s"
UNIT_FEED_FORMAT = "mm/min"
# *****************************************************************************
# * Initial configuration, changeable via command line arguments *