Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Pr20100 committed Jan 9, 2023
1 parent 4227eff commit 3a4dd4b
Show file tree
Hide file tree
Showing 7 changed files with 125 additions and 14 deletions.
10 changes: 5 additions & 5 deletions TMC2209.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
###Tmc drivers base config
###Tmc drivers base config from original Marlin FW
[tmc2209 stepper_x]
uart_pin: PC1
run_current: 0.860
stealthchop_threshold: 180
interpolate: False
interpolate: True
sense_resistor: 0.150
uart_address: 3
driver_SGTHRS: 81 #SENSORLES HOMING SENSITIVITY 255 is most sensitive value, 0 is least sensitive
Expand All @@ -13,7 +13,7 @@ diag_pin: PA5
uart_pin: PC0
run_current: 0.900
stealthchop_threshold: 180
interpolate: False
interpolate: True
sense_resistor: 0.150
uart_address: 3
driver_SGTHRS: 81 #SENSORLES HOMING SENSITIVITY 255 is most sensitive value, 0 is least sensitive
Expand All @@ -23,10 +23,10 @@ diag_pin: PA6
uart_pin: PA15
run_current: 1.000
stealthchop_threshold: 40
interpolate: False
interpolate: True
sense_resistor: 0.150
uart_address: 3
diag_pin: PA7
#diag_pin: PA7

[tmc2209 extruder]
uart_pin: PC14
Expand Down
2 changes: 1 addition & 1 deletion base.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
[include /home/pi/klipper_config/config/screws_adjust.cfg]
[include /home/pi/klipper_config/config/gantry_calibration.cfg]
[include /home/pi/klipper_config/config/print_start-end.cfg]
[include /home/pi/klipper_config/config/options.cfg]
[include /home/pi/klipper_config/config/options.cfg]
29 changes: 29 additions & 0 deletions basic.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#Alternative printing profile, uncomment the line in options.cfg to activate
[printer]
max_velocity: 180
max_accel: 800
max_accel_to_decel: 400

[stepper_x]
microsteps: 64
[tmc2209 stepper_x]
stealthchop_threshold: 1
interpolate: False

[stepper_y]
microsteps: 64
[tmc2209 stepper_y]
stealthchop_threshold: 1
interpolate: False

[stepper_z]
microsteps: 64
[tmc2209 stepper_z]
stealthchop_threshold: 1
interpolate: False

[extruder]
microsteps: 32
[tmc2209 extruder]
stealthchop_threshold: 0
interpolate: False
17 changes: 12 additions & 5 deletions options.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
#############################################################################################################
### OPTIONS
#############################################################################################################

### PRINTING PROFILES
## UNCOMMENT TO ACTIVATE / ALL COMMENTED = RUNING THE MARLIN STOCK VALUES

#[include /home/pi/klipper_config/config/printing-profiles/basic.cfg]
#[include /home/pi/klipper_config/config/printing-profiles/silent.cfg]
#[include /home/pi/klipper_config/config/printing-profiles/performance.cfg]

#############################################################################################################

### RESONANCE COMPENSATION / ADXL

####To use Klipper resonance compensation WITH ADXL SENSOR CONNECTED TO THE PI, uncomment the next line and folow the guide
Expand All @@ -14,15 +24,12 @@
#[include /home/pi/klipper_config/config/pico-usb-adxl.cfg]

#############################################################################################################
### EXCLUDE OBJECT WHILE PRINTING

### To enable set "enable_object_processing: True"in Moonraker.conf documentation:
### https://docs.mainsail.xyz/features/exclude_objects
#[exclude_object]

#############################################################################################################
### To use an alternative and optimized speed profile, uncomment the next line (max accel. 2K, max speed
### 300mms, more accurate moves, faster homing and probing)
#[include /home/pi/klipper_config/config/speed_profile.cfg]

#############################################################################################################
### To desactivate the useless Octoprint menu in the screen
[menu __main __octoprint]
Expand Down
46 changes: 46 additions & 0 deletions performance.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
#Alternative optimized profile, uncomment the line in options.cfg to activate
[printer]
max_velocity: 300
max_accel: 3000
max_accel_to_decel: 1500
max_z_velocity: 10
max_z_accel: 150

[stepper_x]
microsteps: 32
homing_speed: 40
[tmc2209 stepper_x]
run_current: 1
stealthchop_threshold: 0
interpolate: False

[stepper_y]
microsteps: 32
homing_speed: 40
[tmc2209 stepper_y]
run_current: 1
stealthchop_threshold: 0
interpolate: False

[stepper_z]
microsteps: 32
homing_speed: 10
[tmc2209 stepper_z]
run_current: 1
stealthchop_threshold: 0
interpolate: FALSE

[extruder]
microsteps: 32
max_temp: 300
[tmc2209 extruder]
run_current: 0.550
stealthchop_threshold: 0
interpolate: False

[bed_mesh]
speed: 250
horizontal_move_z: 2

[screws_tilt_adjust]
speed: 250
6 changes: 3 additions & 3 deletions printer.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ restart_method: command

[printer]
kinematics: cartesian
max_velocity: 200
max_accel: 1000
max_accel_to_decel: 500
max_velocity: 180
max_accel: 500
max_accel_to_decel: 300
max_z_velocity: 5
max_z_accel: 100
square_corner_velocity: 5
Expand Down
29 changes: 29 additions & 0 deletions silent.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#Alternative printing profile, uncomment the line in options.cfg to activate
[printer]
max_velocity: 130
max_accel: 500
max_accel_to_decel: 300

[stepper_x]
microsteps: 16
[tmc2209 stepper_x]
stealthchop_threshold: 999999
interpolate: True

[stepper_y]
microsteps: 16
[tmc2209 stepper_y]
stealthchop_threshold: 999999
interpolate: True

[stepper_z]
microsteps: 16
[tmc2209 stepper_z]
stealthchop_threshold: 999999
interpolate: True

[extruder]
microsteps: 32
[tmc2209 extruder]
stealthchop_threshold: 999999
interpolate: False

0 comments on commit 3a4dd4b

Please sign in to comment.