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>2022-08-12 10:34:59 +0300
committerDavid Crocker <dcrocker@eschertech.com>2022-08-12 15:11:12 +0300
commitb7af5540763a1a820b564319e9ac9407367a2b49 (patch)
treef4622d6c15855f7ac5d779884f7d7e1bf479a12b /src/CAN
parent475f43e35e428b7bf8c81c5ea3c320a4d3a8f3a6 (diff)
Made build date/time consistent in all reports
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 4dac2518..4dc17ec1 100644
--- a/src/CAN/CanInterface.cpp
+++ b/src/CAN/CanInterface.cpp
@@ -393,7 +393,7 @@ void CanInterface::SendAnnounce(CanMessageBuffer *buf) noexcept
memcpy(msg->uniqueId, reprap.GetPlatform().GetUniqueId().GetRaw(), sizeof(msg->uniqueId));
// Note, board type name, firmware version, firmware date and firmware time are limited to 43 characters in the new
// We use vertical-bar to separate the three fields: board type, firmware version, date/time
- SafeSnprintf(msg->boardTypeAndFirmwareVersion, ARRAY_SIZE(msg->boardTypeAndFirmwareVersion), "%s|%s|%s%.6s", BOARD_SHORT_NAME, VERSION, IsoDate, TIME_SUFFIX);
+ SafeSnprintf(msg->boardTypeAndFirmwareVersion, ARRAY_SIZE(msg->boardTypeAndFirmwareVersion), "%s|%s|%s%.6s", BOARD_SHORT_NAME, VERSION, DATE, TIME_SUFFIX);
buf->dataLength = msg->GetActualDataLength();
SendMessageNoReplyNoFree(buf);
}