aboutsummaryrefslogtreecommitdiffstats
path: root/config/generic-th3d-ezboard-v2.0.cfg
diff options
context:
space:
mode:
authorApulo <anthony.dellett@gmail.com>2023-02-23 11:46:21 -0500
committerGitHub <noreply@github.com>2023-02-23 11:46:21 -0500
commita5fb20765e9f3872a21ab0debb7c9b46bc119ffd (patch)
tree6fc5d7232b2640a7495b2842c5da63f5c2ff9b55 /config/generic-th3d-ezboard-v2.0.cfg
parent761b350c806afafaeeb88edd8f43707f35da93a3 (diff)
downloadkutter-a5fb20765e9f3872a21ab0debb7c9b46bc119ffd.tar.gz
kutter-a5fb20765e9f3872a21ab0debb7c9b46bc119ffd.tar.xz
kutter-a5fb20765e9f3872a21ab0debb7c9b46bc119ffd.zip
config: Update and rename generic-th3d-ezboard-lite-v2.0.cfg to generic-th3d-… (#6070)
The actual board name is EZBoard V2 without the lite. Renaming the file and correcting the intro text to reflect the actual board name. Signed-off-by: Anthony Dellett <anthony.dellett@gmail.com>
Diffstat (limited to 'config/generic-th3d-ezboard-v2.0.cfg')
-rw-r--r--config/generic-th3d-ezboard-v2.0.cfg131
1 files changed, 131 insertions, 0 deletions
diff --git a/config/generic-th3d-ezboard-v2.0.cfg b/config/generic-th3d-ezboard-v2.0.cfg
new file mode 100644
index 00000000..4d32280f
--- /dev/null
+++ b/config/generic-th3d-ezboard-v2.0.cfg
@@ -0,0 +1,131 @@
+# This file contains common pin mappings for the TH3D EZBoard v2.
+# To use this config, check "Enable extra low-level configuration options"
+# and compile the firmware for the STM32F405 with 12mhz Crystal,
+# 48KiB Bootloader, and USB communication.
+
+# After the firmware is compiled, execute the following command
+# arm-none-eabi-objcopy -O srec out/klipper.elf out/firmware.bin
+
+# The "make flash" command does not work on this board. Instead,
+# after running "make", copy the generated "out/firmware.bin" file to
+# an SD card and then restart the board with that SD card.
+
+# See docs/Config_Reference.md for a description of parameters.
+
+[mcu]
+serial: /dev/serial/by-id/usb-Klipper_stm32f407xx_0000000000000000-if00
+
+[printer]
+kinematics: cartesian
+max_velocity: 300
+max_accel: 3000
+max_z_velocity: 5
+max_z_accel: 100
+
+[stepper_x]
+step_pin: PB3
+dir_pin: PD2
+enable_pin: !PB5
+microsteps: 16
+rotation_distance: 40
+endstop_pin: ^!PC1
+position_endstop: 0
+position_max: 235
+homing_speed: 50
+
+[tmc2209 stepper_x]
+uart_pin: PC11
+tx_pin: PC10
+run_current: 0.600
+uart_address: 0
+
+[stepper_y]
+step_pin: PB8
+dir_pin: PC13
+enable_pin: !PC12
+microsteps: 16
+rotation_distance: 40
+endstop_pin: ^!PC2
+position_endstop: 0
+position_max: 235
+homing_speed: 50
+
+[tmc2209 stepper_y]
+uart_pin: PC11
+tx_pin: PC10
+run_current: 0.600
+uart_address: 1
+
+[stepper_z]
+step_pin: PA3
+dir_pin: PB1
+enable_pin: !PC14
+microsteps: 16
+rotation_distance: 8
+endstop_pin: ^!PC3
+position_endstop: 0.5
+position_max: 250
+
+[tmc2209 stepper_z]
+uart_pin: PC11
+tx_pin: PC10
+run_current: 0.700
+uart_address: 2
+
+[extruder]
+step_pin: PA15
+dir_pin: PB11
+enable_pin: !PB2
+microsteps: 16
+rotation_distance: 34.406
+nozzle_diameter: 0.400
+filament_diameter: 1.750
+heater_pin: PC8
+sensor_type: EPCOS 100K B57560G104F
+sensor_pin: PA1
+control: pid
+pid_Kp: 22.2
+pid_Ki: 1.08
+pid_Kd: 114
+min_temp: 0
+max_temp: 250
+
+[tmc2209 extruder]
+uart_pin: PC11
+tx_pin: PC10
+run_current: 0.800
+stealthchop_threshold: 999999
+uart_address: 3
+
+[heater_bed]
+heater_pin: PC9
+sensor_type: EPCOS 100K B57560G104F
+sensor_pin: PA0
+control: pid
+pid_Kp: 54.027
+pid_Ki: 0.770
+pid_Kd: 948.182
+min_temp: 0
+max_temp: 130
+
+[fan]
+pin: PC6
+
+#[bltouch]
+#sensor_pin: ^PC3
+#control_pin: PA2
+
+#[filament_switch_sensor my_sensor]
+#switch_pin: PC0
+
+########################################
+# EXP1 / EXP2 (display) pins
+########################################
+
+[board_pins]
+aliases:
+# EXP1 header
+ EXP1_1=PA14, EXP1_3=PC4, EXP1_5=PC5, EXP1_7=PB12, EXP1_9=<GND>,
+ EXP1_2=PB0, EXP1_4=<RST>, EXP1_6=PB13, EXP1_8=PB15, EXP1_10=<5V>
+
+# See the sample-lcd.cfg file for definitions of common LCD displays.