From 7dcfc1484e3a57b4391f1332a6cbe3b07b5e90f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gu=C3=B0ni=20M=C3=A1r=20Gilbert?= Date: Sat, 10 Sep 2022 15:25:12 +0000 Subject: [PATCH] PFW-1362 temporary debug messages --- Firmware/SpoolJoin.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Firmware/SpoolJoin.cpp b/Firmware/SpoolJoin.cpp index 2a169943c..a241a05c1 100644 --- a/Firmware/SpoolJoin.cpp +++ b/Firmware/SpoolJoin.cpp @@ -61,9 +61,14 @@ uint8_t SpoolJoin::isSpoolJoinEnabled() uint8_t SpoolJoin::nextSlot() { + SERIAL_ECHOPGM("SpoolJoin: Changing slot from "); + SERIAL_ECHO((int)currentMMUSlot); if (currentMMUSlot == 4) currentMMUSlot = 0; else currentMMUSlot++; + SERIAL_ECHOPGM(" to "); + SERIAL_ECHOLN((int)currentMMUSlot); + return currentMMUSlot; }