From 451ee4faa42eb304b27aeeef8c75387b4a12a614 Mon Sep 17 00:00:00 2001 From: Christopher Peplin Date: Fri, 27 Dec 2013 19:04:27 -0500 Subject: Draft progress implementing single frame rx. --- src/isotp/receive.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/isotp/receive.h (limited to 'src/isotp/receive.h') diff --git a/src/isotp/receive.h b/src/isotp/receive.h new file mode 100644 index 00000000..f7d6c61f --- /dev/null +++ b/src/isotp/receive.h @@ -0,0 +1,19 @@ +#ifndef __ISOTP_RECEIVE_H__ +#define __ISOTP_RECEIVE_H__ + +#include +#include +#include + +#ifdef __cplusplus +extern "C" { +#endif + +void isotp_handle_single_frame(IsoTpHandler* handler, const uint16_t arbitration_id, + const uint8_t* data, const uint8_t length); + +#ifdef __cplusplus +} +#endif + +#endif // __ISOTP_RECEIVE_H__ -- cgit 1.2.3-korg