diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-03-19 12:28:35 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-03-25 10:49:17 -0400 |
commit | 681ca5be62652ffb5fe940d458e39b20c705eed5 (patch) | |
tree | a64b2a0f1ee8fed1b4388cc165e5965c735dfcb5 /config/generic-replicape.cfg | |
parent | 165b4cb63fc7b8ff967d327c88604b7ef0bef6a3 (diff) | |
download | kutter-681ca5be62652ffb5fe940d458e39b20c705eed5.tar.gz kutter-681ca5be62652ffb5fe940d458e39b20c705eed5.tar.xz kutter-681ca5be62652ffb5fe940d458e39b20c705eed5.zip |
config: Do not use beagleboard aliases in example config files
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config/generic-replicape.cfg')
-rw-r--r-- | config/generic-replicape.cfg | 37 |
1 files changed, 18 insertions, 19 deletions
diff --git a/config/generic-replicape.cfg b/config/generic-replicape.cfg index 7604772b..c83f2c9b 100644 --- a/config/generic-replicape.cfg +++ b/config/generic-replicape.cfg @@ -15,7 +15,6 @@ [mcu] serial: /dev/rpmsg_pru30 -pin_map: beaglebone [mcu host] serial: /tmp/klipper_host_mcu @@ -33,34 +32,34 @@ stepper_e_microstep_mode: 16 stepper_e_current: 0.5 [stepper_x] -step_pin: P8_17 -dir_pin: P8_26 +step_pin: gpio0_27 +dir_pin: gpio1_29 enable_pin: replicape:stepper_x_enable microsteps: 16 rotation_distance: 40 -endstop_pin: ^P9_25 +endstop_pin: ^gpio3_21 position_endstop: 0 position_max: 200 homing_speed: 50 [stepper_y] -step_pin: P8_12 -dir_pin: P8_19 +step_pin: gpio1_12 +dir_pin: gpio0_22 enable_pin: replicape:stepper_y_enable microsteps: 16 rotation_distance: 40 -endstop_pin: ^P9_23 +endstop_pin: ^gpio1_17 position_endstop: 0 position_max: 200 homing_speed: 50 [stepper_z] -step_pin: P8_13 -dir_pin: P8_14 +step_pin: gpio0_23 +dir_pin: gpio0_26 enable_pin: replicape:stepper_z_enable microsteps: 16 rotation_distance: 8 -endstop_pin: ^P9_13 +endstop_pin: ^gpio0_31 position_endstop: 0 position_max: 200 @@ -72,8 +71,8 @@ max_z_velocity: 25 max_z_accel: 30 [extruder] -step_pin: P9_12 -dir_pin: P8_15 +step_pin: gpio1_28 +dir_pin: gpio1_15 enable_pin: replicape:stepper_e_enable microsteps: 16 rotation_distance: 33.500 @@ -101,7 +100,7 @@ max_temp: 130 pin: replicape:power_fan0 # The alternative servo pins channels on the endstops x2 and y2 can be used -# via the special relicape pins servo0 (P9_14) and servo1 (P9_16). +# via the special relicape pins servo0 (gpio1_18) and servo1 (gpio1_19). #[servo servo_x2] #pin: replicape:servo0 # PWM output pin controlling the servo. This parameter must be @@ -116,16 +115,16 @@ pin: replicape:power_fan0 [board_pins] aliases: # step/dir pins - X_DIR=P8_26, X_STEP=P8_17, Y_DIR=P8_19, Y_STEP=P8_12, Z_DIR=P8_14, Z_STEP=P8_13, - E_DIR=P8_15, E_STEP=P9_12, H_DIR=P8_16, H_STEP=P8_11, + X_DIR=gpio1_29, X_STEP=gpio0_27, Y_DIR=gpio0_22, Y_STEP=gpio1_12, Z_DIR=gpio0_26, Z_STEP=gpio0_23, + E_DIR=gpio1_15, E_STEP=gpio1_28, H_DIR=gpio1_14, H_STEP=gpio1_13, # stepper fault pins - FAULT_X=P8_10, FAULT_Y=P8_9, FAULT_Z=P9_24, FAULT_E=P8_18, FAULT_H=P8_8, + FAULT_X=gpio2_4, FAULT_Y=gpio2_5, FAULT_Z=gpio0_15, FAULT_E=gpio2_1, FAULT_H=gpio2_3, # endstops - STOP_X1=P9_25, STOP_X2=P9_11, STOP_Y1=P9_23, STOP_Y2=P9_28, STOP_Z1=P9_13, STOP_Z2=P9_18, + STOP_X1=gpio3_21, STOP_X2=gpio0_30, STOP_Y1=gpio1_17, STOP_Y2=gpio3_17, STOP_Z1=gpio0_31, STOP_Z2=gpio0_4, # enable steppers (all on one pin) - STEPPER_ENABLE=P9_41, + STEPPER_ENABLE=gpio0_20, # servos - SERVO_0=P9_14, SERVO_1=P9_16, + SERVO_0=gpio1_18, SERVO_1=gpio1_19, [board_pins host] mcu: host |