PFW-1362 temporarily don't use SpoolJoin in Tcodes
I think in the current implementation, this will cause more harm than good. But we can improve SpoolJoin later
This commit is contained in:
parent
7dcfc1484e
commit
b292a5bf4e
|
|
@ -59,8 +59,9 @@ void TCodes(char *const strchr_pointer, uint8_t codeValue) {
|
||||||
SChooseFromMenu selectedSlot;
|
SChooseFromMenu selectedSlot;
|
||||||
if (strchr_pointer[index] == '?') {
|
if (strchr_pointer[index] == '?') {
|
||||||
selectedSlot = TCodeChooseFromMenu();
|
selectedSlot = TCodeChooseFromMenu();
|
||||||
} else if (MMU2::mmu2.Enabled() && SpoolJoin::spooljoin.isSpoolJoinEnabled()) {
|
/*} else if (MMU2::mmu2.Enabled() && SpoolJoin::spooljoin.isSpoolJoinEnabled()) {
|
||||||
selectedSlot.slot = SpoolJoin::spooljoin.nextSlot();
|
// TODO: What if the next slot has no filament?
|
||||||
|
selectedSlot.slot = SpoolJoin::spooljoin.nextSlot();*/
|
||||||
} else {
|
} else {
|
||||||
selectedSlot.slot = codeValue;
|
selectedSlot.slot = codeValue;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue