Skip to content
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

Fix wrong init temperature without prime blob #2013

Merged
merged 2 commits into from
Jan 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/LayerPlanBuffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ void LayerPlanBuffer::insertTempCommands()

if (initial_print_temp == 0.0 // user doesn't want to use initial print temp feature
|| extruder_settings.get<bool>("machine_extruders_share_heater") // ignore initial print temps when extruders share a heater
|| ! extruder_used_in_meshgroup_[extruder] // prime blob uses print temp rather than initial print temp
|| (! extruder_used_in_meshgroup_[extruder] && extruder_settings.get<bool>("prime_blob_enable")) // prime blob uses print temp rather than initial print temp
|| (overall_extruder_plan_idx > 0 && extruder_plans[overall_extruder_plan_idx - 1]->extruder_nr_ == extruder // prev plan has same extruder ..
&& extruder_plans[overall_extruder_plan_idx - 1]->estimates_.getTotalUnretractedTime() > 0.0) // and prev extruder plan already heated to printing temperature
)
Expand Down
Loading