diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-03-26 11:41:51 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-03-26 11:53:06 -0400 |
commit | 8f8cf7ef4151adab8f1122bf6b61c185575f32f6 (patch) | |
tree | 87583ea1c0285e6aa7f410e65f5a0902eee0bfbb | |
parent | cb414ae9142b951714a206c0c4fc4366c945eae2 (diff) | |
download | kutter-8f8cf7ef4151adab8f1122bf6b61c185575f32f6.tar.gz kutter-8f8cf7ef4151adab8f1122bf6b61c185575f32f6.tar.xz kutter-8f8cf7ef4151adab8f1122bf6b61c185575f32f6.zip |
config: Add example printer-twotrees-sapphire-pro-2020.cfg config
Reported by @thucar.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | config/printer-twotrees-sapphire-pro-2020.cfg | 89 | ||||
-rw-r--r-- | test/klippy/printers.test | 1 |
2 files changed, 90 insertions, 0 deletions
diff --git a/config/printer-twotrees-sapphire-pro-2020.cfg b/config/printer-twotrees-sapphire-pro-2020.cfg new file mode 100644 index 00000000..4c9b4c51 --- /dev/null +++ b/config/printer-twotrees-sapphire-pro-2020.cfg @@ -0,0 +1,89 @@ +# This file contains common pin mappings for the Two Trees Sapphire +# Pro printer from 2020. To use this config, the firmware should be +# compiled for the STM32F103. When running "make menuconfig", enable +# "extra low-level configuration setup", select the 28KiB bootloader, +# disable "USB for communication", select USART3 for the "Serial +# Port", and set "GPIO pins to set at micro-controller startup" to +# "!PC6,!PD13". + +# Note that the "make flash" command does not work with the Sapphire +# Pro. After running "make", run the following command: +# ./scripts/update_mks_robin.py out/klipper.bin out/Robin_nano35.bin +# Copy the file out/Robin_nano35.bin to an SD card and then restart the +# printer with that SD card. + +# See the example.cfg file for a description of available parameters. + +[stepper_x] +step_pin: PE3 +dir_pin: !PE2 +enable_pin: !PE4 +step_distance: .01 +endstop_pin: !PA15 +position_endstop: 0 +position_max: 230 +homing_speed: 50 + +[stepper_y] +step_pin: PE0 +dir_pin: !PB9 +enable_pin: !PE1 +step_distance: .01 +endstop_pin: !PA12 +position_endstop: 230 +position_max: 230 +homing_speed: 50 + +[stepper_z] +step_pin: PB5 +dir_pin: PB4 +enable_pin: !PB8 +step_distance: .0025 +endstop_pin: !PA11 +position_endstop: 0.5 +position_max: 230 + +[extruder] +step_pin: PD6 +dir_pin: !PD3 +enable_pin: !PB3 +step_distance: .0021 +nozzle_diameter: 0.400 +filament_diameter: 1.750 +heater_pin: PC3 +sensor_type: ATC Semitec 104GT-2 +sensor_pin: PC1 +control: pid +pid_Kp: 14.669 +pid_Ki: 0.572 +pid_Kd: 94.068 +min_temp: 0 +max_temp: 250 + +[heater_bed] +heater_pin: PA0 +sensor_type: EPCOS 100K B57560G104F +sensor_pin: PC0 +control: pid +pid_Kp: 325.10 +pid_Ki: 63.35 +pid_Kd: 417.10 +min_temp: 0 +max_temp: 130 + +[fan] +pin: PB1 + +[mcu] +serial: /dev/ttyUSB0 +restart_method: command + +[printer] +kinematics: corexy +max_velocity: 250 +max_accel: 4500 +max_z_velocity: 25 +max_z_accel: 100 + +[static_digital_output reset_display] +pins: !PC6, !PD13 diff --git a/test/klippy/printers.test b/test/klippy/printers.test index 698ae30f..2875a14b 100644 --- a/test/klippy/printers.test +++ b/test/klippy/printers.test @@ -114,6 +114,7 @@ DICTIONARY stm32f103-serial.dict CONFIG ../../config/generic-fysetc-cheetah-v1.1.cfg CONFIG ../../config/generic-fysetc-cheetah-v1.2.cfg CONFIG ../../config/generic-mks-robin-nano.cfg +CONFIG ../../config/printer-twotrees-sapphire-pro-2020.cfg # Printers using the stm32f407 DICTIONARY stm32f407.dict |