ソースを参照

Minor tweak to M204 code (PR#2457)

Scott Lahteine 9年前
コミット
db23b9b184
1個のファイルの変更2行の追加3行の削除
  1. 2
    3
      Marlin/Marlin_main.cpp

+ 2
- 3
Marlin/Marlin_main.cpp ファイルの表示

@@ -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')) {

読み込み中…
キャンセル
保存