MCPcopy Create free account
hub / github.com/Duet3D/RepRapFirmware / SendMessageNoReplyNoFree

Method SendMessageNoReplyNoFree

src/CAN/CanInterface.cpp:909–915  ·  view source on GitHub ↗

Send a request message with no reply expected, and don't free the buffer. Used to send emergency stop messages.

Source from the content-addressed store, hash-verified

907
908// Send a request message with no reply expected, and don't free the buffer. Used to send emergency stop messages.
909void CanInterface::SendMessageNoReplyNoFree(CanMessageBuffer *buf) noexcept
910{
911 if (can0dev != nullptr)
912 {
913 SendCanMessage(TxBufferIndexBroadcast, MaxResponseSendWait, buf);
914 }
915}
916
917#if DUAL_CAN
918

Callers

nothing calls this directly

Calls 1

SendCanMessageFunction · 0.85

Tested by

no test coverage detected