-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reprint after print not possible and ends in a runtime error, see Issue #1421 #1454
Merged
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
710d2d3
Add test file for repeated prints
DivingDuck e04d6ea
Add old behavior of M110 back and combine it with the actual behavior…
DivingDuck 5ac78fe
Merge branch 'kliment:master' into issue-1421
DivingDuck 6f41202
Code cleaning, update comment, updated gcode test files
DivingDuck fdc25e5
Remove comments
DivingDuck File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
; Print this file for a quick test of support for arc movements with | ||
; G2 and G3 and z helix movement up and down +- 10 mm, 6 times a full cycle | ||
; It takes only a half minute and prints above the print bed (z=20 mm) | ||
; w/o heating and extrusion | ||
|
||
G28 ; home | ||
G0 Z10.0000 S0 ; lift z | ||
G90 ; absolute mode | ||
G21 ; set unit to mm | ||
|
||
G2 X15 Y20 I30 J40 Z20 F8000 | ||
G3 X15 Y20 I30 J40 Z10 F8000 | ||
G2 X15 Y20 I30 J40 Z20 F8000 | ||
G3 X15 Y20 I30 J40 Z10 F8000 | ||
G2 X15 Y20 I30 J40 Z20 F8000 | ||
G3 X15 Y20 I30 J40 Z10 F8000 | ||
|
||
G0 X5.0000 | ||
G0 Y5.0000 | ||
|
||
M84; motors off |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This information if very useful but I would not clutter the code with it. I believe this kind of explanation belongs to the commit message that introduces the code change, not in the code itself. If you know what I mean. Plus you wouldn't need to repeat it twice. I'm happy with the change otherwise.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No problem, I removed the comments.