浏览代码

Fix missing comma in tmc_sgt

Fixes #10209
Scott Lahteine 7 年前
父节点
当前提交
2bc7f416ee
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/src/module/configuration_store.cpp

+ 1
- 1
Marlin/src/module/configuration_store.cpp 查看文件

@@ -809,7 +809,7 @@ void MarlinSettings::postprocess() {
809 809
         #if defined(Y_HOMING_SENSITIVITY) && (ENABLED(Y_IS_TMC2130) || ENABLED(IS_TRAMS))
810 810
           stepperY.sgt(),
811 811
         #else
812
-          0
812
+          0,
813 813
         #endif
814 814
         #if defined(Z_HOMING_SENSITIVITY) && (ENABLED(Z_IS_TMC2130) || ENABLED(IS_TRAMS))
815 815
           stepperZ.sgt()

正在加载...
取消
保存