-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Layer update during printing #1319
Layer update during printing #1319
Conversation
Hi. Why would you change the event to MKS_32_V1_4? |
And I believe you have a typo, you write "Targetl" but I believe it should be "Target" and suddenly the compiling which failed before also works. |
I keep forgetting to set it back to original before making a commit. MKS_32_V1_4 is what I use for my builds.
Yup, there was a typo. New commit is on the way, hope it fixes layer update during print issues for BOARD_SD, TFT_USB and TFT_SD gcode file source. |
👍🏻
kisslorand <[email protected]> schrieb am Di. 1. Dez. 2020 um 14:36:
… Hi.
Why would you change the event to MKS_32_V1_4?
I keep forgetting to set it back to original before making a commit.
MKS_32_V1_4 is what I use for my builds.
And I believe you have a typo, you write "Targetl" but I believe it should
be "Target" and suddenly the compiling which failed before also works.
Yup, there was a typo
New commit is on the way, hope it fixes layer update during print issues
for BOARD_SD, TFT_USB and TFT_SD gcode file source.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#1319 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AM6XKZGENG4OIMZE6TLVNPDSSTWPRANCNFSM4UIJXHAA>
.
|
👍🏻 I was just making the same change and saw this. :) |
Does it work with these changes with SD onboard? I can test it only with SD and USB connected to the TFT. |
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.
Maybe on line 278 we should put the coordinatequery call in ternary if also. If it is not printing from BOARD_SD, we do not need to call coordinatequery frequently.
Why do you need it when printing from BOARD_SD? Answering my own question... to find out the "Z:". :) Actually I watched terminal while printing from TFT_USB and I didn't see a single M114 sent to Marlin. In the PrintingMenu.c I also see no point using it at all while printing from a media attached to the TFT. |
@kisslorand that was exactly what I would do. |
How can I test the code with all PRs failing to check successfully? |
I guess you can check the changes made and do that to your files locally than build it. How did you do it before? |
I am not able to check it right now. But all changes are reasonable. If it can compile, it should work. |
This works with just a few changes. I use GitHub Desktop to merge PRs to my local repository. |
off topic @mehmetsutas Have you got a mail from me yesterday? |
Requirements
BTT TFT or MKS TFT
Description
Layer update during printing was broken due to PR #1272
Benefits
Layer display during printing fixed. It shows the actual layer height, it updates during printing.
Related Issues
Fixes this issue: #1314