-
Notifications
You must be signed in to change notification settings - Fork 2k
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
G-code Viewer do not render "Tools" changes (in v2.5.0 or v2.4.? but was ok in v2.3.2 ...) #8467
Comments
Hi, I can also see weird things about the temperature, which seems more or less linked to this issue. For instance, the current tool is T0, and M104 T1 S190 apply the new temperature setpoint to this tool (green part) which is wrong,, followed by M104 S185 (blue part) which apply to T0 too which is correct (no tool specified). Those M104 are probably for pre-heating T1 and cooldown T0 before the upcoming toolchange. I suspect a mistake during the parsing of 'T'. Thanks @PPAC37 for reporting this issue. |
Thanks for the report. it seems we really broke loading of external G-Codes. This G-Code is from Cura and the |
I had a look in void GCodeProcessor::process_M104(const GCodeReader::GCodeLine& line)
{
float new_temp;
if (line.has_value('S', new_temp))
m_extruder_temps[m_extruder_id] = new_temp;
} 'T' parameter is not processed. It is purely ignored, and the temperature is applied to the current It is unrelated to the OP issue (which is the result of the empty |
…gcode produced by other slicers, by adding missing default values
… gcode lines M104
Description of the bug
from v2.4.?, the same .gcode (with a dual extrusion ( T0 , T1 ) ) do not rendrer tools changes.
in v2.3.2 (ok, as you can see two diffrent tools)
![image png 1e97b5a6ae0c577f04b21d6a947fbd82](https://user-images.githubusercontent.com/94939582/177660949-7eb70c99-5e49-486f-a87d-6ab7c0baa0c9.png)
but in v2.5.0-alpha2 and other v2.4.x i try ( not ok only one tool ... but this is the same .gcode file )
![image png ad7cb676f1450f4292ae68b12a4beb43](https://user-images.githubusercontent.com/94939582/177661239-40cb772c-5a3f-4213-831a-4475a49577a3.png)
( maybe related to #7548 and or #8324 but I speak without knowing. )
Project file & How to reproduce
.gcode file used dual.zip
Checklist of files included above
Version of PrusaSlicer
2.5.0-alpha2+linux-x64-GTK3
Operating system
Ubuntu 20.04
Printer model
K8400
The text was updated successfully, but these errors were encountered: