Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/CAN
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2021-07-30 10:17:45 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-07-30 10:17:45 +0300
commit7c5ef6000bdeebfa8d51c0ead656ea554f1eb882 (patch)
tree170bd0a4bc3f8282d6a97f16498b356a64b2f925 /src/CAN
parent7b0dde7831f35450b6c5c077b00821b118eb9570 (diff)
parentd7fd1866ffbfbb87229fa89ae2c7add48307cd8a (diff)
Merge branch 'v3-chrishamm' into 3.4-input-shaping
Diffstat (limited to 'src/CAN')
-rw-r--r--src/CAN/CanInterface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CAN/CanInterface.cpp b/src/CAN/CanInterface.cpp
index 9b42ab44..d7d93946 100644
--- a/src/CAN/CanInterface.cpp
+++ b/src/CAN/CanInterface.cpp
@@ -1191,7 +1191,7 @@ void CanInterface::Diagnostics(MessageType mtype) noexcept
CanId id;
id.SetReceivedId(lastCancelledId);
lastCancelledId = 0;
- str.catf(" last cancelled message type %u dest %u\n", (unsigned int)id.MsgType(), id.Dst());
+ str.catf(" last cancelled message type %u dest %u", (unsigned int)id.MsgType(), id.Dst());
}
reprap.GetPlatform().MessageF(mtype, "Tx timeouts%s\n", str.c_str());