diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-11-12 18:18:32 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-11-12 18:45:31 -0500 |
commit | 77dff35faefe18cc9cc567ec4428fd7f59ad4e24 (patch) | |
tree | 98b30042a7d20fd9b236bf24175fd341f4ed3b56 /config/generic-duet2.cfg | |
parent | a4995c61c986d947af03b6f90c945cfcf8577811 (diff) | |
download | kutter-77dff35faefe18cc9cc567ec4428fd7f59ad4e24.tar.gz kutter-77dff35faefe18cc9cc567ec4428fd7f59ad4e24.tar.xz kutter-77dff35faefe18cc9cc567ec4428fd7f59ad4e24.zip |
tmc: Remove virtual_enable support and replace with automatic support
Automatically detect if the stepper has a dedicated enable line. If
it does not, then automatically enable virtual enable support.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config/generic-duet2.cfg')
-rw-r--r-- | config/generic-duet2.cfg | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/config/generic-duet2.cfg b/config/generic-duet2.cfg index a0555f7a..615288d7 100644 --- a/config/generic-duet2.cfg +++ b/config/generic-duet2.cfg @@ -6,7 +6,7 @@ [stepper_x] step_pin: PD6 dir_pin: PD11 -enable_pin: !PC6, tmc2660_stepper_x:virtual_enable +enable_pin: !PC6 step_distance: .0125 endstop_pin: ^PC14 position_endstop: 0 @@ -22,7 +22,7 @@ sense_resistor: 0.051 [stepper_y] step_pin: PD7 dir_pin: !PD12 -enable_pin: !PC6, tmc2660_stepper_y:virtual_enable +enable_pin: !PC6 step_distance: .0125 endstop_pin: ^PA2 position_endstop: 0 @@ -38,7 +38,7 @@ sense_resistor: 0.051 [stepper_z] step_pin: PD8 dir_pin: PD13 -enable_pin: !PC6, tmc2660_stepper_z:virtual_enable +enable_pin: !PC6 step_distance: .0025 endstop_pin: ^PD29 #endstop_pin: PD10 # E0 endstop @@ -56,7 +56,7 @@ sense_resistor: 0.051 [extruder] step_pin: PD5 dir_pin: PA1 -enable_pin: !PC6, tmc2660_extruder:virtual_enable +enable_pin: !PC6 step_distance: .002 nozzle_diameter: 0.400 filament_diameter: 1.750 @@ -80,7 +80,7 @@ sense_resistor: 0.051 #[extruder1] #step_pin: PD4 #dir_pin: PD9 -#enable_pin: !PC6, tmc2660_extruder1:virtual_enable +#enable_pin: !PC6 #heater_pin: !PA16 #sensor_pin: PC12 #... |