Update deps.
[apps/low-level-can-service.git] / src / isotp / receive.h
1 #ifndef __ISOTP_RECEIVE_H__
2 #define __ISOTP_RECEIVE_H__
3
4 #include <isotp/isotp.h>
5 #include <stdint.h>
6 #include <stdbool.h>
7
8 #ifdef __cplusplus
9 extern "C" {
10 #endif
11
12 void isotp_handle_single_frame(IsoTpHandler* handler, IsoTpMessage* message);
13
14 void isotp_complete_receive(IsoTpHandler* handler, IsoTpMessage* message);
15
16 void isotp_receive_can_frame(IsoTpHandler* handler,
17         const uint16_t arbitration_id, const uint8_t data[],
18         const uint8_t size);
19
20 #ifdef __cplusplus
21 }
22 #endif
23
24 #endif // __ISOTP_RECEIVE_H__