Browse Source

Fix missing comma in tmc_sgt

Fixes #10209
Scott Lahteine 7 years ago
parent
commit
2bc7f416ee
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/module/configuration_store.cpp

+ 1
- 1
Marlin/src/module/configuration_store.cpp View File

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

Loading…
Cancel
Save