mirror of
https://github.com/MarlinFirmware/Configurations.git
synced 2025-08-08 22:35:18 -06:00
Fix Huxley/Sanguinololu & TMC_MICROSTEP_IS_VALID name collision (#72)
This commit is contained in:
parent
7118a312bd
commit
b86052405d
2 changed files with 12 additions and 12 deletions
|
@ -721,9 +721,9 @@
|
|||
// Standard NEMA 17 with T2 belt and 20 tooth pulley
|
||||
//
|
||||
#define NEMA17_FULL_STEPS 200.0
|
||||
#define XY_MICROSTEPS 16.0
|
||||
#define E_MICROSTEPS 16.0
|
||||
#define Z_MICROSTEPS 16.0
|
||||
#define TEMP_XY_MICROSTEPS 16.0
|
||||
#define TEMP_E_MICROSTEPS 16.0
|
||||
#define TEMP_Z_MICROSTEPS 16.0
|
||||
|
||||
/* RepRapPro belts
|
||||
http://forums.reprap.org/read.php?1,391198
|
||||
|
@ -739,9 +739,9 @@ Black rubber belt(MXL), 18 - tooth aluminium pulley : 87.489 step per mm (Huxley
|
|||
//
|
||||
#define Z_RODS_PITCH 0.8
|
||||
|
||||
#define XY_MOTOR_STEPS (NEMA17_FULL_STEPS * XY_MICROSTEPS)
|
||||
#define Z_MOTOR_STEPS (NEMA17_FULL_STEPS * Z_MICROSTEPS)
|
||||
#define E_MOTOR_STEPS (NEMA17_FULL_STEPS * E_MICROSTEPS)
|
||||
#define XY_MOTOR_STEPS (NEMA17_FULL_STEPS * TEMP_XY_MICROSTEPS)
|
||||
#define Z_MOTOR_STEPS (NEMA17_FULL_STEPS * TEMP_Z_MICROSTEPS)
|
||||
#define E_MOTOR_STEPS (NEMA17_FULL_STEPS * TEMP_E_MICROSTEPS)
|
||||
|
||||
//
|
||||
// MK7 Direct Drive
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue