Remove hardcoded MMU tool count

- Preload to MMU -> All
- Loading Test -> All
- SpoolJoin
This commit is contained in:
3d-gussner 2024-10-29 15:50:01 +01:00
parent ef3527eb0f
commit cdb6635eac
2 changed files with 3 additions and 3 deletions

View File

@ -55,7 +55,7 @@ uint8_t SpoolJoin::nextSlot()
SERIAL_ECHOPGM("SpoolJoin: ");
SERIAL_ECHO((int)currentMMUSlot);
if (currentMMUSlot >= 4) currentMMUSlot = 0;
if (currentMMUSlot >= MMU_FILAMENT_COUNT-1) currentMMUSlot = 0;
else currentMMUSlot++;
SERIAL_ECHOPGM(" -> ");

View File

@ -4735,7 +4735,7 @@ static void lcd_disable_farm_mode()
}
static inline void load_all_wrapper(){
for(uint8_t i = 0; i < 5; ++i){
for(uint8_t i = 0; i < MMU_FILAMENT_COUNT; ++i){
MMU2::mmu2.load_filament(i);
}
}
@ -4812,7 +4812,7 @@ static void mmu_cut_filament_menu() {
#endif //MMU_HAS_CUTTER
static inline void loading_test_all_wrapper(){
for(uint8_t i = 0; i < 5; ++i){
for(uint8_t i = 0; i < MMU_FILAMENT_COUNT; ++i){
MMU2::mmu2.loading_test(i);
}