Allow external spool workflow with Filament Track Switch#11336
Open
PollyBot13 wants to merge 2 commits into
Open
Allow external spool workflow with Filament Track Switch#11336PollyBot13 wants to merge 2 commits into
PollyBot13 wants to merge 2 commits into
Conversation
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
This draft addresses
bambulab/BambuStudio#10328by allowing the existing per-nozzle external spool virtual slots to be selected in Studio when a Filament Track Switch is installed.Current behavior blocks external spool selection in the FTS / dynamic mapping dialog and tells users to uninstall the Filament Track Switch. That forces users to physically unplug/remove the accessory for cases where the filament can be routed externally:
Implemented Scope
This is intentionally a small Studio-side change:
255/ main-right external spool254/ deputy-left external spoolLEFT_AND_RIGHT_DYNAMICmapping modeLoad/Unloadactions to reach the existing assisted feed-direction flow when the Filament Track Switch is installedExt-L/Ext-R, because those virtual external slots represent user-assisted external routing that may intentionally bypass the switchExt-L/Ext-Rby sending material settings for virtual slots and preserving the correct virtual tray id (254or255)Studio sends the same existing external virtual-slot mapping for both physical routing cases; the operator/printer must enforce the actual route.
Non-goals
This does not implement a full routing graph or claim that the Filament Track Switch can retract arbitrary external spools.
It also does not add a persisted
via bufferversusdirect bypassmode, because I have not found an existing printer/job protocol field for that distinction in Studio. The patch only re-enables the existing external virtual-slot mapping that Studio already serializes.Desired Product Behavior
The desired product behavior is:
If printer firmware currently rejects external virtual-slot mapping while FTS is installed, this Studio patch will need a matching firmware capability/update. In that case, the same UI change should be gated behind a firmware/capability flag instead of being rejected as a hardware impossibility.
Validation
git diff --checkCMAKE_BUILD_PARALLEL_LEVEL=8 ./BuildMac.sh -d -a arm64 -x -c Releaseninja -C build/arm64 -j8build/arm64/BambuStudio/BambuStudio.app20P9BJ620301973 (LAN)from an isolated test profileBambu_Cube.stlwith the X2D presetSendLoad/Unload; this patch removes that blanket block so both assisted operations can proceed through the existing feed-direction flow without requiring FTS readiness forExt-L/Ext-R254, and the response parser only refreshed the main/right virtual slot. This patch sends virtual-slot material settings explicitly and keepsExt-L/Ext-Rdistinct.src/slic3r/GUI/DeviceCore/DevDefs.hsrc/slic3r/GUI/DeviceCore/DevMapping.cppsrc/slic3r/GUI/SelectMachine.cppsrc/slic3r/GUI/AmsMappingPopupUpdate.cppsrc/slic3r/GUI/AmsMappingPopup.cppsrc/slic3r/GUI/StatusPanel.cppStill not validated:
254/255external virtual-slot mapping while FTS is installedAddresses #10328.