summaryrefslogtreecommitdiffstats
path: root/src/isotp/send.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/isotp/send.h')
-rw-r--r--src/isotp/send.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/isotp/send.h b/src/isotp/send.h
new file mode 100644
index 00000000..17a7dad0
--- /dev/null
+++ b/src/isotp/send.h
@@ -0,0 +1,19 @@
+#ifndef __ISOTP_SEND_H__
+#define __ISOTP_SEND_H__
+
+#include <isotp/isotp.h>
+#include <stdint.h>
+#include <stdbool.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+bool isotp_send(IsoTpHandler* handler, const uint8_t* payload,
+ uint16_t payload_size);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // __ISOTP_SEND_H__