Skip to content

Commit

Permalink
Merge pull request bigtreetech#25 from thisiskeithb/pr_improve_config
Browse files Browse the repository at this point in the history
Reduce TMC Current & Fix E0 Slave Address
  • Loading branch information
bigtreetech authored Sep 4, 2019
2 parents 0a613c3 + ed12a2d commit 0f14117
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions firmware/Marlin-2.0.x-SKR-Mini-E3/Marlin/Configuration_adv.h
Original file line number Diff line number Diff line change
Expand Up @@ -1715,7 +1715,7 @@
#define INTERPOLATE true // Interpolate X/Y/Z_MICROSTEPS to 256

#if AXIS_IS_TMC(X)
#define X_CURRENT 800 // (mA) RMS current. Multiply by 1.414 for peak current.
#define X_CURRENT 580 // (mA) RMS current. Multiply by 1.414 for peak current.
#define X_MICROSTEPS 16 // 0..256
#define X_RSENSE 0.11
#endif
Expand All @@ -1727,7 +1727,7 @@
#endif

#if AXIS_IS_TMC(Y)
#define Y_CURRENT 800
#define Y_CURRENT 580
#define Y_MICROSTEPS 16
#define Y_RSENSE 0.11
#endif
Expand All @@ -1739,7 +1739,7 @@
#endif

#if AXIS_IS_TMC(Z)
#define Z_CURRENT 800
#define Z_CURRENT 580
#define Z_MICROSTEPS 16
#define Z_RSENSE 0.11
#endif
Expand All @@ -1757,7 +1757,7 @@
#endif

#if AXIS_IS_TMC(E0)
#define E0_CURRENT 800
#define E0_CURRENT 650
#define E0_MICROSTEPS 16
#define E0_RSENSE 0.11
#endif
Expand Down Expand Up @@ -1838,8 +1838,8 @@
#define X2_SLAVE_ADDRESS 0
#define Y2_SLAVE_ADDRESS 0
#define Z2_SLAVE_ADDRESS 0
#define Z3_SLAVE_ADDRESS 3
#define E0_SLAVE_ADDRESS 0
#define Z3_SLAVE_ADDRESS 0
#define E0_SLAVE_ADDRESS 3
#define E1_SLAVE_ADDRESS 0
#define E2_SLAVE_ADDRESS 0
#define E3_SLAVE_ADDRESS 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1715,7 +1715,7 @@
#define INTERPOLATE true // Interpolate X/Y/Z_MICROSTEPS to 256

#if AXIS_IS_TMC(X)
#define X_CURRENT 800 // (mA) RMS current. Multiply by 1.414 for peak current.
#define X_CURRENT 580 // (mA) RMS current. Multiply by 1.414 for peak current.
#define X_MICROSTEPS 16 // 0..256
#define X_RSENSE 0.11
#endif
Expand All @@ -1727,7 +1727,7 @@
#endif

#if AXIS_IS_TMC(Y)
#define Y_CURRENT 800
#define Y_CURRENT 580
#define Y_MICROSTEPS 16
#define Y_RSENSE 0.11
#endif
Expand All @@ -1739,7 +1739,7 @@
#endif

#if AXIS_IS_TMC(Z)
#define Z_CURRENT 800
#define Z_CURRENT 580
#define Z_MICROSTEPS 16
#define Z_RSENSE 0.11
#endif
Expand All @@ -1757,7 +1757,7 @@
#endif

#if AXIS_IS_TMC(E0)
#define E0_CURRENT 800
#define E0_CURRENT 650
#define E0_MICROSTEPS 16
#define E0_RSENSE 0.11
#endif
Expand Down

0 comments on commit 0f14117

Please sign in to comment.