Skip to content

Commit

Permalink
馃悰 Fix MMU1 compile (MarlinFirmware#22965)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellensp authored and thinkyhead committed Dec 25, 2021
1 parent 555f35d commit e7a7469
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Marlin/src/MarlinCore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,10 @@
#include "feature/controllerfan.h"
#endif

#if HAS_PRUSA_MMU1
#include "feature/mmu/mmu.h"
#endif

#if HAS_PRUSA_MMU2
#include "feature/mmu/mmu2.h"
#endif
Expand Down
6 changes: 3 additions & 3 deletions Marlin/src/feature/mmu/mmu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@

#if HAS_PRUSA_MMU1

#include "../MarlinCore.h"
#include "../module/planner.h"
#include "../module/stepper.h"
#include "../../MarlinCore.h"
#include "../../module/planner.h"
#include "../../module/stepper.h"

void mmu_init() {
SET_OUTPUT(E_MUX0_PIN);
Expand Down

0 comments on commit e7a7469

Please sign in to comment.