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