Merge pull request #4805 from 3d-gussner/MK3_Fix_MMU

Remove hardcoded MMU tool count
This commit is contained in:
3d-gussner 2024-11-10 11:56:55 +01:00 committed by GitHub
commit 0fb17b1643
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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);
}