1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-23 12:04:19 +00:00

🐛 Fix MMU1 compile (#22965)

This commit is contained in:
ellensp 2021-10-18 20:54:20 +13:00 committed by GitHub
parent d3a84bc584
commit ec57879c59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

View File

@ -216,6 +216,10 @@
#include "feature/controllerfan.h" #include "feature/controllerfan.h"
#endif #endif
#if HAS_PRUSA_MMU1
#include "feature/mmu/mmu.h"
#endif
#if HAS_PRUSA_MMU2 #if HAS_PRUSA_MMU2
#include "feature/mmu/mmu2.h" #include "feature/mmu/mmu2.h"
#endif #endif

View File

@ -24,9 +24,9 @@
#if HAS_PRUSA_MMU1 #if HAS_PRUSA_MMU1
#include "../MarlinCore.h" #include "../../MarlinCore.h"
#include "../module/planner.h" #include "../../module/planner.h"
#include "../module/stepper.h" #include "../../module/stepper.h"
void mmu_init() { void mmu_init() {
SET_OUTPUT(E_MUX0_PIN); SET_OUTPUT(E_MUX0_PIN);