config_MaxVelocity()

Description

Set the maximum speed of the machine.

Syntax

machine.config_MaxVelocity(axis, max_feedrate_mps);

Parameters

machine: Machine object.

axis: The axis to set the maximum speed, can be AXIS_X, AXIS_Y or AXIS_Z.

max_feedrate_mps: The maximum feed rate of the machine on the specified axis, in mm per second.

Return

true: Setting is successful.
false: Setting error, which means the machine does not exist or the setting is made after the machine is started.

Please make sure the machine exists and make sure to set the machine before starting it.

See also

config_MaxAcc()


Library Reference

The text of the 86Duino reference material is licensed under the Creative Commons Attribution-Share Alike 3.0 License. The code examples in the reference material have been released into the public domain.