|
ISOTP-C
A platform-agnostic ISOTP implementation in C.
|
#include <stdint.h>

Go to the source code of this file.
Functions | |
| void | isotp_user_debug (const char *message,...) |
| user implemented, print debug message More... | |
| int | isotp_user_send_can (const uint32_t arbitration_id, const uint8_t *data, const uint8_t size) |
| user implemented, send can message. should return ISOTP_RET_OK when success. More... | |
| uint32_t | isotp_user_get_us (void) |
| user implemented, gets the amount of time passed since the last call in microseconds More... | |
| void isotp_user_debug | ( | const char * | message, |
| ... | |||
| ) |
user implemented, print debug message
Referenced by isotp_receive_consecutive_frame(), isotp_receive_first_frame(), isotp_receive_flow_control_frame(), isotp_receive_single_frame(), and isotp_send_with_id().
| uint32_t isotp_user_get_us | ( | void | ) |
user implemented, gets the amount of time passed since the last call in microseconds
Referenced by isotp_on_can_message(), isotp_poll(), and isotp_send_with_id().
| int isotp_user_send_can | ( | const uint32_t | arbitration_id, |
| const uint8_t * | data, | ||
| const uint8_t | size | ||
| ) |
user implemented, send can message. should return ISOTP_RET_OK when success.
Referenced by isotp_send_consecutive_frame(), isotp_send_first_frame(), isotp_send_flow_control(), and isotp_send_single_frame().