|
@@ -4105,9 +4105,8 @@ inline void gcode_M203() {
|
4105
|
4105
|
*/
|
4106
|
4106
|
inline void gcode_M204() {
|
4107
|
4107
|
if (code_seen('S')) { // Kept for legacy compatibility. Should NOT BE USED for new developments.
|
4108
|
|
- acceleration = code_value();
|
4109
|
|
- travel_acceleration = acceleration;
|
4110
|
|
- SERIAL_ECHOPAIR("Setting Print and Travel Acceleration: ", acceleration );
|
|
4108
|
+ travel_acceleration = acceleration = code_value();
|
|
4109
|
+ SERIAL_ECHOPAIR("Setting Print and Travel Acceleration: ", acceleration);
|
4111
|
4110
|
SERIAL_EOL;
|
4112
|
4111
|
}
|
4113
|
4112
|
if (code_seen('P')) {
|