diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-06-04 15:19:08 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-06-04 15:25:17 -0400 |
commit | 5d26c2a08ec0dafcacbf47de4d9ea619a324027a (patch) | |
tree | 881a50dafde5653d8b6c2bbd384688507e7e1b4c /test | |
parent | 2a66286d1c2c01ddd9ce34ae6c8417cc02401c78 (diff) | |
download | kutter-5d26c2a08ec0dafcacbf47de4d9ea619a324027a.tar.gz kutter-5d26c2a08ec0dafcacbf47de4d9ea619a324027a.tar.xz kutter-5d26c2a08ec0dafcacbf47de4d9ea619a324027a.zip |
gcode_arcs: Add back in support for E moves in absolute extrude mode
This reverts commit 43fa41c1af648ea626040e17f0eebda39dcdb2cb.
The above commit disabled absolute extrude moves because it was
unclear if the code would work properly when an M221 extrude factor or
G92 offset was in use. However, since the calculation is done
relative to the raw E position and is sent as a raw E position to
gcode.cmd_G1() these modes should not matter.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'test')
-rw-r--r-- | test/klippy/gcode_arcs.test | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/klippy/gcode_arcs.test b/test/klippy/gcode_arcs.test index 84e13b34..2be4efc9 100644 --- a/test/klippy/gcode_arcs.test +++ b/test/klippy/gcode_arcs.test @@ -3,7 +3,6 @@ DICTIONARY atmega2560.dict CONFIG gcode_arcs.cfg # Home and move in arcs -M83 G28 G1 X20 Y20 Z20 G2 X125 Y32 Z20 E1 I10.5 J10.5 |