Encapsulate arb_id, payload and size into a data type.
[apps/low-level-can-service.git] / src / isotp / send.h
1 #ifndef __ISOTP_SEND_H__
2 #define __ISOTP_SEND_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 bool isotp_send(IsoTpHandler* handler, const uint8_t* payload,
13         uint16_t payload_size);
14
15 #ifdef __cplusplus
16 }
17 #endif
18
19 #endif // __ISOTP_SEND_H__