Difference between revisions of "Revolt A1"
(→Klipper config) |
(→Klipper config) |
||
Line 8: | Line 8: | ||
==Klipper config== | ==Klipper config== | ||
This config is using stepper x and y as the high voltage drivers, typical of a core-xy printer setup for speed. This gives the option of having 4 Z-drives and two extruders, 8 steppers in total. | This config is using stepper x and y as the high voltage drivers, typical of a core-xy printer setup for speed. This gives the option of having 4 Z-drives and two extruders, 8 steppers in total. | ||
+ | |||
+ | This section sets up the two drivers (X = S6 and Y = S7) | ||
<pre> | <pre> | ||
− | |||
[tmc5160 stepper_x] | [tmc5160 stepper_x] | ||
run_current: 0.6 | run_current: 0.6 | ||
Line 30: | Line 31: | ||
chain_length: 2 | chain_length: 2 | ||
stealthchop_threshold: 9999 | stealthchop_threshold: 9999 | ||
+ | </pre> | ||
+ | |||
+ | To route step and dir signals to the same motors: | ||
+ | <pre> | ||
+ | [stepper_x] | ||
+ | step_pin: ar100:PL10 | ||
+ | dir_pin: ar100:PE14 | ||
+ | |||
+ | [stepper_y] | ||
+ | step_pin: ar100:PL11 | ||
+ | dir_pin: !ar100:PE15 | ||
</pre> | </pre> |
Revision as of 10:23, 10 September 2023
Revolt is a dual 48 V compatible stepper motor driver add-on board. It is based on TMC5160.
Hardware connections
The Revolt add-on baord is designed to stack on top of the Recore A7 board. There are two dual row connectors on the Revolt board, but only one on Recore A7. This means that there is only a software enable/disable for the TMC5160 drivers. It is enabled by default. There is also no diag output from the drivers. Those are broken out on the two other rows and can be connected to pins on the MCU header or DBG header if sensorless homing is required.
Klipper config
This config is using stepper x and y as the high voltage drivers, typical of a core-xy printer setup for speed. This gives the option of having 4 Z-drives and two extruders, 8 steppers in total.
This section sets up the two drivers (X = S6 and Y = S7)
[tmc5160 stepper_x] run_current: 0.6 hold_current: 0.2 sense_resistor: 0.05 cs_pin: ar100:PD0 spi_software_sclk_pin: ar100:PD2 spi_software_mosi_pin: ar100:PD1 spi_software_miso_pin: ar100:PD3 chain_position: 2 chain_length: 2 stealthchop_threshold: 9999 [tmc5160 stepper_y] run_current: 0.6 hold_current: 0.2 sense_resistor: 0.05 cs_pin: ar100:PD0 chain_position: 1 chain_length: 2 stealthchop_threshold: 9999
To route step and dir signals to the same motors:
[stepper_x] step_pin: ar100:PL10 dir_pin: ar100:PE14 [stepper_y] step_pin: ar100:PL11 dir_pin: !ar100:PE15