Log a message when rejecting a send.
authorChristopher Peplin <chris.peplin@rhubarbtech.com>
Sat, 28 Dec 2013 18:56:36 +0000 (13:56 -0500)
committerChristopher Peplin <chris.peplin@rhubarbtech.com>
Sat, 28 Dec 2013 18:56:36 +0000 (13:56 -0500)
src/isotp/isotp.c

index a1136f7..d552e13 100644 (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;
 }