mirror of
https://github.com/andreili/klipper.git
synced 2025-08-23 19:34:06 +02:00
* tests: Added a regression test for generic_cartesian kinematics * kinematics: An intial implementation of generic_cartesian kinematics * generic_cartesian: Refactored kinematics configuration API * generic_cartesian: Use stepper instead of kinematic_stepper in configs * generic_cartesian: Added SET_STEPPER_KINEMATICS command * generic_cartesian: Fixed parsing of section names * docs: Generic Caretsian kinematics documentation and config samples * generic_cartesian: Implemented multi-mcu homing validation * generic_cartesian: Fixed typos in docs, minor fixes * generic_cartesian: Renamed `kinematics` option to `carriages` * generic_cartesian: Moved kinematic_stepper.py file * idex_modes: Internal refactoring of handling dual carriages * stepper: Refactored the code to not store a reference to config object * config: Updated example-generic-cartesian config * generic_cartesian: Restricted SET_STEPPER_CARRIAGES and exported status * idex_modes: Fixed handling stepper kinematics with input shaper enabled * config: Updated configs and tests for SET_DUAL_CARRIAGE new params * generic_cartesian: Avoid inheritance in the added classes Signed-off-by: Dmitry Butyugin <dmbutyugin@google.com>
53 lines
880 B
Plaintext
53 lines
880 B
Plaintext
# Test cases on printers with dual carriage and multiple extruders
|
|
CONFIG corexyuv.cfg
|
|
DICTIONARY atmega2560.dict
|
|
|
|
# First home the printer
|
|
G90
|
|
G28
|
|
|
|
# Perform a dummy move
|
|
G1 X10 Y20 F6000
|
|
|
|
# Activate alternate carriage
|
|
SET_DUAL_CARRIAGE CARRIAGE=u
|
|
SET_DUAL_CARRIAGE CARRIAGE=v
|
|
G1 X170 Y190 F6000
|
|
|
|
# Go back to main carriage on X axis
|
|
SET_DUAL_CARRIAGE CARRIAGE=x
|
|
G1 X20 F6000
|
|
|
|
# Save dual carriage state
|
|
SAVE_DUAL_CARRIAGE_STATE
|
|
|
|
G1 Y150 F6000
|
|
|
|
# Go back to main carriage on Y axis
|
|
SET_DUAL_CARRIAGE CARRIAGE=y
|
|
G1 X10 Y50 F6000
|
|
|
|
# Restore dual carriage state
|
|
RESTORE_DUAL_CARRIAGE_STATE
|
|
|
|
# Test changing extruders
|
|
G1 X5
|
|
T1
|
|
G91
|
|
G1 X-10 E.2
|
|
T0
|
|
G91
|
|
G1 X20 E.2
|
|
G90
|
|
|
|
QUERY_ENDSTOPS
|
|
|
|
# Servo tests
|
|
SET_SERVO servo=my_servo angle=160
|
|
SET_SERVO servo=my_servo angle=130
|
|
|
|
# Verify STEPPER_BUZZ
|
|
STEPPER_BUZZ STEPPER='stepper d'
|
|
STEPPER_BUZZ STEPPER=extruder
|
|
STEPPER_BUZZ STEPPER=extruder1
|