From ba0f051f728593f9cca750ab02a000b9a36ca12a Mon Sep 17 00:00:00 2001 From: Alex Voinea Date: Sun, 18 Dec 2022 15:55:48 +0100 Subject: [PATCH] Revert accidental removal of check --- Firmware/mmu2.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Firmware/mmu2.cpp b/Firmware/mmu2.cpp index e362a2145..210154740 100644 --- a/Firmware/mmu2.cpp +++ b/Firmware/mmu2.cpp @@ -18,6 +18,9 @@ #include "cardreader.h" // for IS_SD_PRINTING #include "SpoolJoin.h" +// As of FW 3.12 we only support building the FW with only one extruder, all the multi-extruder infrastructure will be removed. +// Saves at least 800B of code size +static_assert(EXTRUDERS==1); namespace MMU2 {