Skip to content

Commit

Permalink
Merge pull request #4805 from 3d-gussner/MK3_Fix_MMU
Browse files Browse the repository at this point in the history
Remove hardcoded MMU tool count
  • Loading branch information
3d-gussner authored Nov 10, 2024
2 parents ef3527e + cdb6635 commit 0fb17b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Firmware/SpoolJoin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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(" -> ");
Expand Down
4 changes: 2 additions & 2 deletions Firmware/ultralcd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Expand Down Expand Up @@ -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);
}

Expand Down

0 comments on commit 0fb17b1

Please sign in to comment.