diff options
Diffstat (limited to 'test/klippy/tmc.cfg')
-rw-r--r-- | test/klippy/tmc.cfg | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/test/klippy/tmc.cfg b/test/klippy/tmc.cfg new file mode 100644 index 00000000..2a73ae58 --- /dev/null +++ b/test/klippy/tmc.cfg @@ -0,0 +1,85 @@ +# Test config for tmc drivers + +[stepper_x] +step_pin: PC0 +dir_pin: PL0 +enable_pin: !PA7 +step_distance: .005 +endstop_pin: tmc2130_stepper_x:virtual_endstop +position_endstop: 0 +position_max: 250 + +[tmc2130 stepper_x] +cs_pin: PG0 +microsteps: 16 +run_current: .5 +sense_resistor: 0.220 +diag1_pin: !PK2 + +[stepper_x1] +step_pin: PC3 +dir_pin: PL6 +enable_pin: !PA4 +step_distance: .005 +endstop_pin: ^PB6 + +[tmc2130 stepper_x1] +cs_pin: PG1 +microsteps: 16 +run_current: .5 +sense_resistor: 0.220 +diag1_pin: !PK2 + +[stepper_y] +step_pin: PC1 +dir_pin: !PL1 +enable_pin: !PA6 +step_distance: .005 +endstop_pin: tmc5160_stepper_y:virtual_endstop +position_endstop: 0 +position_max: 210 + +[tmc5160 stepper_y] +cs_pin: PG2 +microsteps: 16 +run_current: .5 +sense_resistor: 0.220 +diag1_pin: !PK7 + +[stepper_z] +step_pin: PC2 +dir_pin: PL2 +enable_pin: !PA5 +step_distance: .0025 +endstop_pin: ^PB4 +position_endstop: 0.5 +position_max: 200 + +[tmc2208 stepper_z] +uart_pin: PK5 +microsteps: 16 +run_current: .5 +sense_resistor: 0.220 + +[stepper_z1] +step_pin: PB5 +dir_pin: PK6 +enable_pin: !PH5 +step_distance: .0025 +endstop_pin: ^PH3 + +[tmc2660 stepper_z1] +cs_pin: PK1 +microsteps: 16 +run_current: .5 +sense_resistor: 0.220 + +[mcu] +serial: /dev/ttyACM0 + +[printer] +kinematics: cartesian +max_velocity: 300 +max_accel: 3000 +max_z_velocity: 5 +max_z_accel: 100 |