Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Klipper3d/klipper.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJamesH1978 <87171443+JamesH1978@users.noreply.github.com>2022-09-03 19:19:50 +0300
committerGitHub <noreply@github.com>2022-09-03 19:19:50 +0300
commit6ba02429009df34ba348abe80023ce3a3530bc58 (patch)
tree6265e6d40b61bcc1c5fca1ce34b12721c199a89d
parentae6c16422f1107139fa2f36cbd31360b37312ff7 (diff)
config: Fix uart_address on BTT SKR CR6 (#5741)
As found on discord bt user David Carey. uart_address for y and z are swapped. Discovered while setting up sensorless homing. Signed off by: James Hartley <james@hartleyns.com>
-rw-r--r--config/generic-bigtreetech-skr-cr6-v1.0.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/generic-bigtreetech-skr-cr6-v1.0.cfg b/config/generic-bigtreetech-skr-cr6-v1.0.cfg
index 18e5ce5bb..5266fa945 100644
--- a/config/generic-bigtreetech-skr-cr6-v1.0.cfg
+++ b/config/generic-bigtreetech-skr-cr6-v1.0.cfg
@@ -45,7 +45,7 @@ homing_speed: 50
[tmc2209 stepper_y]
uart_pin: PC11
tx_pin: PC10
-uart_address: 2
+uart_address: 1
run_current: 0.550
stealthchop_threshold: 999999
@@ -63,7 +63,7 @@ position_max: 250
[tmc2209 stepper_z]
uart_pin: PC11
tx_pin: PC10
-uart_address: 1
+uart_address: 2
run_current: 0.550
stealthchop_threshold: 999999