fix: Add pause and filament change to machine gcodes for Sovol SV08 MAX #1762

Closed
opened 2026-04-05 19:41:02 +02:00 by MrUnknownDE · 0 comments
Owner

Originally created by @arachnist on 10/31/2025

Description

While importing the profiles (#10768) I missed the pause and filament change g-code settings being empty (as was the case in "upstream" profiles). This caused the exported g-code to not contain any pause instructions for the printer, making it seemingly ignore the requested pauses.

Screenshots/Recordings/Graphs

Snippet of g-code from before the fix:

;PAUSE_PRINT


; printing object Cube id:0 copy 0

Snippet of g-code with the fix:

;PAUSE_PRINT
PAUSE


; printing object Cube id:0 copy 0

Tests

Printed a small test object with the pause added.

*Originally created by @arachnist on 10/31/2025* # Description While importing the profiles (#10768) I missed the pause and filament change g-code settings being empty (as was the case in "upstream" profiles). This caused the exported g-code to not contain any pause instructions for the printer, making it seemingly ignore the requested pauses. # Screenshots/Recordings/Graphs Snippet of g-code from before the fix: ```gcode ;PAUSE_PRINT ; printing object Cube id:0 copy 0 ``` Snippet of g-code with the fix: ```gcode ;PAUSE_PRINT PAUSE ; printing object Cube id:0 copy 0 ``` ## Tests Printed a small test object with the pause added.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github/OrcaSlicer#1762