PFW-1362 temporary debug messages
This commit is contained in:
parent
8610636906
commit
7dcfc1484e
|
|
@ -61,9 +61,14 @@ uint8_t SpoolJoin::isSpoolJoinEnabled()
|
||||||
|
|
||||||
uint8_t SpoolJoin::nextSlot()
|
uint8_t SpoolJoin::nextSlot()
|
||||||
{
|
{
|
||||||
|
SERIAL_ECHOPGM("SpoolJoin: Changing slot from ");
|
||||||
|
SERIAL_ECHO((int)currentMMUSlot);
|
||||||
if (currentMMUSlot == 4) currentMMUSlot = 0;
|
if (currentMMUSlot == 4) currentMMUSlot = 0;
|
||||||
else currentMMUSlot++;
|
else currentMMUSlot++;
|
||||||
|
|
||||||
|
SERIAL_ECHOPGM(" to ");
|
||||||
|
SERIAL_ECHOLN((int)currentMMUSlot);
|
||||||
|
|
||||||
return currentMMUSlot;
|
return currentMMUSlot;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue