From 65a0036dbeeee3c48cb203fcdd5f5f2e312ab792 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gu=C3=B0ni=20M=C3=A1r=20Gilbert?= Date: Sat, 10 Sep 2022 19:22:40 +0000 Subject: [PATCH] PFW-1362 Optimise debug message Saves 20 bytes of flash :) --- Firmware/SpoolJoin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Firmware/SpoolJoin.cpp b/Firmware/SpoolJoin.cpp index f5f076f0b..77f77d6a3 100644 --- a/Firmware/SpoolJoin.cpp +++ b/Firmware/SpoolJoin.cpp @@ -67,13 +67,13 @@ void SpoolJoin::setSlot(uint8_t slot) uint8_t SpoolJoin::nextSlot() { - SERIAL_ECHOPGM("SpoolJoin: Changing slot from "); + SERIAL_ECHOPGM("SpoolJoin: "); SERIAL_ECHO((int)currentMMUSlot); if (currentMMUSlot >= 4) currentMMUSlot = 0; else currentMMUSlot++; - SERIAL_ECHOPGM(" to "); + SERIAL_ECHOPGM(" -> "); SERIAL_ECHOLN((int)currentMMUSlot); return currentMMUSlot;