diff options
author | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2013-12-28 13:56:36 -0500 |
---|---|---|
committer | Christopher Peplin <chris.peplin@rhubarbtech.com> | 2013-12-28 13:56:36 -0500 |
commit | 45530604e0d62843c75a49e25d2269f10dc9eb4f (patch) | |
tree | 8d1808ddfc7fac0d4216c467660c9f134636796a /src | |
parent | b44a9890490f57bea76973f8810360c77ca68081 (diff) |
Log a message when rejecting a send.
Diffstat (limited to 'src')
-rw-r--r-- | src/isotp/isotp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/isotp/isotp.c b/src/isotp/isotp.c index a1136f7b..d552e139 100644 --- a/src/isotp/isotp.c +++ b/src/isotp/isotp.c @@ -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; } |