Log a message when rejecting a send.

This commit is contained in:
Christopher Peplin 2013-12-28 13:56:36 -05:00
parent b44a989049
commit 45530604e0
1 changed files with 1 additions and 0 deletions

View File

@ -74,6 +74,7 @@ bool isotp_send_single_frame(IsoTpHandler* handler, const uint8_t* payload,
bool isotp_send_multi_frame(IsoTpHandler* handler, const uint8_t* payload,
uint16_t size) {
handler->shims->log("Only single frame messages are supported");
return false;
}