-
Notifications
You must be signed in to change notification settings - Fork 86
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 #39 from dimalo/develop
Develop
- Loading branch information
Showing
20 changed files
with
449 additions
and
59 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
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,3 +1,4 @@ | ||
printer.cfg | ||
!config/printer.cfg | ||
.config | ||
.config | ||
build |
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,25 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Build Klipper Image", | ||
"type": "shell", | ||
"command": "docker build --pull --rm -f '${workspaceFolder}/klipper/Dockerfile' -t dimalo/klipper-moonraker:next ${workspaceFolder}", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
}, | ||
{ | ||
"label": "Run Klipper Image", | ||
"type": "shell", | ||
"command": "docker run -it --rm --cap-add SYS_NICE dimalo/klipper-moonraker:next", | ||
"group": { | ||
"kind": "none", | ||
"isDefault": 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!zsh | ||
|
||
BASE=$(pwd) | ||
echo $BASE | ||
TARGET=cheetah | ||
BUILD_DIR=${BASE}/build | ||
CONFIG_NAME=".config_${TARGET}" | ||
CONFIG_PATH=${BUILD_DIR}/${CONFIG_NAME} | ||
touch ${CONFIG_PATH} | ||
OUT_DIR=${BUILD_DIR}/klipper_build_${TARGET} | ||
mkdir -p ${BUILD_DIR} | ||
CONTAINER=$(docker run -d -v ${CONFIG_PATH}:/home/klippy/klipper/.config -v ${BUILD_DIR}:/home/klippy/klipper/out klipper-builder sleep infinity) | ||
docker exec -it ${CONTAINER} make menuconfig | ||
docker exec ${CONTAINER} make | ||
#docker exec ${CONTAINER} make flash | ||
docker stop ${CONTAINER} | ||
docker rm ${CONTAINER} |
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,12 @@ | ||
# https://github.com/Klipper3d/klipper/blob/master/config/sample-raspberry-pi.cfg | ||
# This file contains an example configuration with RPi as secondary mcu | ||
|
||
# See docs/Config_Reference.md for a description of parameters. | ||
|
||
# The rpi microcontroller is used as secondary. | ||
# Typically, both the X and Y axes | ||
# are connected to the main micro-controller. The rpi microcontroller is used | ||
# on non time-critical functions such as enclosure sensors, additional fan or | ||
# light sources | ||
[mcu host] | ||
serial: /tmp/klipper_host_mcu |
This file was deleted.
Oops, something went wrong.
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,2 +1,11 @@ | ||
# This is a dummy config. | ||
# Either mount your config from host like <config_path>:/home/klippy/.config/printer.cfg or change the contents of this file in UI to match your printer! | ||
# Either mount your config from host like <config_path>:/home/klippy/.config/printer.cfg or change the contents of this file in UI to match your printer! | ||
|
||
[include host_mcu.cfg] | ||
[include client.cfg] | ||
[include client_macros.cfg] | ||
[include calibration_macros.cfg] | ||
|
||
# To use the klipper_z_calibration-extension uncomment the following line | ||
# Please see https://github.com/protoloft/klipper_z_calibration | ||
#[include z_calibration.cfg] |
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,74 @@ | ||
# https://github.com/protoloft/klipper_z_calibration#configurations | ||
|
||
[z_calibration] | ||
nozzle_xy_position: | ||
# A X, Y coordinate (e.g. 100,100) of the nozzle, clicking on the Z endstop. | ||
switch_xy_position: | ||
# A X, Y coordinate (e.g. 100,100) of the probe's switch body, clicking on | ||
# the Z endstop. | ||
bed_xy_position: default from relative_reference_index of bed_mesh | ||
# a X, Y coordinate (e.g. 100,100) where the print surface (e.g. the center | ||
# point) is probed. These coordinates will be adapted by the | ||
# probe's X and Y offsets. The default is the relative_reference_index | ||
# of the configured bed_mesh, if configured. It's possible to change the relative | ||
# reference index at runtime or use the GCode argument BED_POSITION of CALIBRATE_Z. | ||
switch_offset: | ||
# The trigger point offset of the used mag-probe switch. | ||
# Larger values will position the nozzle closer to the bed. | ||
# This needs to be find out manually. More on this later | ||
# in this section.. | ||
max_deviation: 1.0 | ||
# The maximum allowed deviation of the calculated offset. | ||
# If the offset exceeds this value, it will stop! | ||
# The default is 1.0 mm. | ||
samples: default from "probe:samples" section | ||
# The number of times to probe each point. The probed z-values | ||
# will be averaged. The default is from the probe's configuration. | ||
samples_tolerance: default from "probe:samples_tolerance" section | ||
# The maximum Z distance (in mm) that a sample may differ from other | ||
# samples. The default is from the probe's configuration. | ||
samples_tolerance_retries: default from "probe:samples_tolerance_retries" section | ||
# The number of times to retry if a sample is found that exceeds | ||
# samples_tolerance. The default is from the probe's configuration. | ||
samples_result: default from "probe:samples_result" section | ||
# The calculation method when sampling more than once - either | ||
# "median" or "average". The default is from the probe's configuration. | ||
clearance: 2 * z_offset from the "probe:z_offset" section | ||
# The distance in mm to move up before moving to the next | ||
# position. The default is two times the z_offset from the probe's | ||
# configuration. | ||
position_min: default from "stepper_z:position_min" section. | ||
# Minimum valid distance (in mm) used for probing move. The | ||
# default is from the Z rail configuration. | ||
speed: 50 | ||
# The moving speed in X and Y. The default is 50 mm/s. | ||
lift_speed: default from "probe:lift_speed" section | ||
# Speed (in mm/s) of the Z axis when lifting the probe between | ||
# samples and clearance moves. The default is from the probe's | ||
# configuration. | ||
probing_speed: default from "stepper_z:homing_speed" section. | ||
# The fast probing speed (in mm/s) used, when probing_first_fast | ||
# is activated. The default is from the Z rail configuration. | ||
probing_second_speed: default from "stepper_z:second_homing_speed" section. | ||
# The slower speed (in mm/s) for probing the recorded samples. | ||
# The default is second_homing_speed of the Z rail configuration. | ||
probing_retract_dist: default from "stepper_z:homing_retract_dist" section. | ||
# Distance to retract (in mm) before probing the next sample. | ||
# The default is homing_retract_dist from the Z rail configuration. | ||
probing_first_fast: false | ||
# If true, the first probing is done faster by the probing speed. | ||
# This is to get faster down and the result is not recorded as a | ||
# probing sample. The default is false. | ||
start_gcode: | ||
# A list of G-Code commands to execute prior to each calibration command. | ||
# See docs/Command_Templates.md for G-Code format. This can be used to | ||
# attach the probe. | ||
before_switch_gcode: | ||
# A list of G-Code commands to execute prior to each probing on the | ||
# mag-probe. See docs/Command_Templates.md for G-Code format. This can be | ||
# used to attach the probe after probing on the nozzle and before probing | ||
# on the mag-probe. | ||
end_gcode: | ||
# A list of G-Code commands to execute after each calibration command. | ||
# See docs/Command_Templates.md for G-Code format. This can be used to | ||
# detach the probe afterwards. |
Oops, something went wrong.