fix default unit string for mm/min

This commit is contained in:
sliptonic
2022-01-26 10:46:05 -06:00
parent 9fba28c1b6
commit 9db8340ff8

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 *