-
-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #261 from Frix-x/develop
v4.1.0
- Loading branch information
Showing
74 changed files
with
919 additions
and
317 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: "\U0001F41B Bug report" | ||
description: Report a bug or problem with Klippain. | ||
labels: ["bug", "triage"] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
This issue form is for reporting bugs only! | ||
If you have a feature request, please use [feature_request](/new?template=feature_request.yml) instead. | ||
- type: checkboxes | ||
id: klippain-branch | ||
attributes: | ||
label: Klippain branch | ||
description: By submitting this issue, you confirm using a "public" release of Klippain from the main branch. We do not provide support for the dev version from other branches as they are known to be unstable. | ||
options: | ||
- label: I confirm using the main branch | ||
required: true | ||
- type: input | ||
id: klippain-version | ||
attributes: | ||
label: Version | ||
description: Specify the version of Klippain used on your printer. You can find this in the update section of Mainsail/Fluidd. | ||
placeholder: ex. v4.0.1-44-g84aba96 | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: Describe the bug and expected behavior | ||
description: >- | ||
Provide a clear and concise description of the bug and why it's problematic. | ||
If applicable, suggest a desired solution. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional-info | ||
attributes: | ||
label: Additional information and klippy.log | ||
description: | | ||
If possible, attach a klippy.log to help us diagnose your issue! | ||
You can also provide any additional helpful details. | ||
Please note, you can attach files or screenshots by dragging and dropping them directly in the field. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Public \#Klippain thread in the Voron Discord | ||
url: https://discord.com/channels/460117602945990666/1096701708643614820 | ||
about: Quickest way to get in contact if you just want to have a chat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: "\U0001F680 Feature request" | ||
description: Suggest a new feature or hardware support for Klippain. | ||
labels: ["enhancement", "triage"] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
This issue form is for suggesting features or hardware support only! | ||
If you're facing a bug, please use the [bug_report](/new?template=bug_report.yml) instead. | ||
- type: textarea | ||
id: feature-description | ||
attributes: | ||
label: Describe the feature or hardware support you'd like | ||
description: >- | ||
Provide a clear and detailed description of the feature, mod, macro, or hardware you'd like to see in Klippain. | ||
Also do not hesistate to explain how your suggestion can enhance Klippain and benefit its users. | ||
placeholder: E.g., "I'd love to see support for this XXX new MCU model..." | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional context or information | ||
description: | | ||
If you have any more information, references, or context about your suggestion, please provide it here. | ||
This can include use-cases, diagrams, documentation, links or any other helpful details. | ||
Please note, you can attach files or screenshots by dragging and dropping them directly in the field. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# X TMC2209 definition | ||
|
||
[gcode_macro _USER_VARIABLES] | ||
variable_x_driver: "TMC2209" | ||
variable_x_driver: "tmc2209" | ||
gcode: | ||
|
||
[tmc2209 stepper_x] | ||
uart_pin: X_TMCUART | ||
interpolate: False | ||
interpolate: True | ||
run_current: 0.8 | ||
sense_resistor: 0.110 | ||
stealthchop_threshold: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# X TMC2240 definition | ||
|
||
[gcode_macro _USER_VARIABLES] | ||
variable_x_driver: "tmc2240" | ||
gcode: | ||
|
||
[tmc2240 stepper_x] | ||
cs_pin: X_TMCUART | ||
spi_speed: 500000 | ||
spi_software_sclk_pin: DRIVER_SPI_SCK | ||
spi_software_mosi_pin: DRIVER_SPI_MOSI | ||
spi_software_miso_pin: DRIVER_SPI_MISO | ||
interpolate: True | ||
run_current: 0.7 | ||
stealthchop_threshold: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# Y TMC2209 definition | ||
|
||
[gcode_macro _USER_VARIABLES] | ||
variable_y_driver: "TMC2209" | ||
variable_y_driver: "tmc2209" | ||
gcode: | ||
|
||
[tmc2209 stepper_y] | ||
uart_pin: Y_TMCUART | ||
interpolate: False | ||
interpolate: True | ||
run_current: 0.8 | ||
sense_resistor: 0.110 | ||
stealthchop_threshold: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Y TMC2240 definition | ||
|
||
[gcode_macro _USER_VARIABLES] | ||
variable_y_driver: "tmc2240" | ||
gcode: | ||
|
||
[tmc2240 stepper_y] | ||
cs_pin: Y_TMCUART | ||
spi_speed: 500000 | ||
spi_software_sclk_pin: DRIVER_SPI_SCK | ||
spi_software_mosi_pin: DRIVER_SPI_MOSI | ||
spi_software_miso_pin: DRIVER_SPI_MISO | ||
interpolate: True | ||
run_current: 0.7 | ||
stealthchop_threshold: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Z TMC2240 definition | ||
|
||
# User variable only needed here as they are called recursively | ||
[gcode_macro _USER_VARIABLES] | ||
variable_z_driver: "tmc2240" | ||
gcode: | ||
|
||
|
||
[tmc2240 stepper_z] | ||
cs_pin: Z_TMCUART | ||
spi_speed: 500000 | ||
spi_software_sclk_pin: DRIVER_SPI_SCK | ||
spi_software_mosi_pin: DRIVER_SPI_MOSI | ||
spi_software_miso_pin: DRIVER_SPI_MISO | ||
interpolate: True | ||
run_current: 0.7 | ||
stealthchop_threshold: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[include TMC2240_1-Motor.cfg] | ||
|
||
[tmc2240 stepper_z1] | ||
cs_pin: Z1_TMCUART | ||
spi_speed: 500000 | ||
spi_software_sclk_pin: DRIVER_SPI_SCK | ||
spi_software_mosi_pin: DRIVER_SPI_MOSI | ||
spi_software_miso_pin: DRIVER_SPI_MISO | ||
interpolate: True | ||
run_current: 0.7 | ||
stealthchop_threshold: 0 | ||
|
||
[tmc2240 stepper_z2] | ||
cs_pin: Z2_TMCUART | ||
spi_speed: 500000 | ||
spi_software_sclk_pin: DRIVER_SPI_SCK | ||
spi_software_mosi_pin: DRIVER_SPI_MOSI | ||
spi_software_miso_pin: DRIVER_SPI_MISO | ||
interpolate: True | ||
run_current: 0.7 | ||
stealthchop_threshold: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[include TMC2240_3-Motors.cfg] | ||
|
||
[tmc2240 stepper_z3] | ||
cs_pin: Z3_TMCUART | ||
spi_speed: 500000 | ||
spi_software_sclk_pin: DRIVER_SPI_SCK | ||
spi_software_mosi_pin: DRIVER_SPI_MOSI | ||
spi_software_miso_pin: DRIVER_SPI_MISO | ||
interpolate: True | ||
run_current: 0.7 | ||
stealthchop_threshold: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# Extruder TMC2209 definition | ||
[gcode_macro _USER_VARIABLES] | ||
variable_e_driver: "TMC2209" | ||
variable_e_driver: "tmc2209" | ||
gcode: | ||
|
||
|
||
[tmc2209 extruder] | ||
uart_pin: E_TMCUART | ||
interpolate: false | ||
interpolate: True | ||
run_current: 0.45 | ||
sense_resistor: 0.110 | ||
stealthchop_threshold: 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
# Extruder TMC2240 definition | ||
[gcode_macro _USER_VARIABLES] | ||
variable_e_driver: "TMC2240" | ||
variable_e_driver: "tmc2240" | ||
gcode: | ||
|
||
[tmc2240 extruder] | ||
cs_pin: E_CS | ||
spi_software_sclk_pin: E_SCLK | ||
spi_software_mosi_pin: E_MOSI | ||
spi_software_miso_pin: E_MISO | ||
cs_pin: E_TMCUART | ||
spi_speed: 500000 | ||
spi_software_sclk_pin: DRIVER_SPI_SCK | ||
spi_software_mosi_pin: DRIVER_SPI_MOSI | ||
spi_software_miso_pin: DRIVER_SPI_MISO | ||
run_current: 0.6 | ||
stealthchop_threshold: 0 | ||
spi_speed: 500000 | ||
interpolate: False | ||
interpolate: True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.