summaryrefslogtreecommitdiffstats
path: root/src/isotp/receive.h
blob: f7d6c61fc51bfbfb014d3499a4bfc9f89852fda3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __ISOTP_RECEIVE_H__
#define __ISOTP_RECEIVE_H__

#include <isotp/isotp.h>
#include <stdint.h>
#include <stdbool.h>

#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__