Searched refs:CAN_MAX_DLEN (Results 1 – 7 of 7) sorted by relevance
/Zephyr-latest/drivers/can/ |
D | can_mcp251xfd.h | 23 #define MCP251XFD_PAYLOAD_SIZE CAN_MAX_DLEN 440 uint8_t data[CAN_MAX_DLEN]; 449 uint8_t data[CAN_MAX_DLEN];
|
D | can_mcp251xfd.c | 54 memcpy(dst->data, src->data, MIN(can_dlc_to_bytes(src->dlc), CAN_MAX_DLEN)); in mcp251xfd_canframe_to_txobj() 237 memcpy(dst->data, src->data, MIN(can_dlc_to_bytes(dst->dlc), CAN_MAX_DLEN)); in mcp251xfd_rxobj_to_canframe()
|
D | can_xmc4xxx.c | 626 memset(&frame.data[0], 0, CAN_MAX_DLEN); in can_xmc4xxx_rx_fifo_handler()
|
/Zephyr-latest/include/zephyr/drivers/ |
D | can.h | 69 #define CAN_MAX_DLEN 8U macro 71 #define CAN_MAX_DLEN 64U 188 uint8_t data[CAN_MAX_DLEN]; 190 uint32_t data_32[DIV_ROUND_UP(CAN_MAX_DLEN, sizeof(uint32_t))];
|
/Zephyr-latest/subsys/canbus/isotp/ |
D | Kconfig | 83 CAN_MAX_DLEN - 1 (for classic CAN : 8 - 1 = 7, for CAN FD : 64 - 1 = 63). 92 Each buffer will occupy CAN_MAX_DLEN - 1 byte + header (sizeof(struct net_buf))
|
D | isotp.c | 30 CAN_MAX_DLEN, sizeof(uint32_t), receive_ff_sf_pool_free);
|
/Zephyr-latest/tests/subsys/canbus/isotp/conformance/src/ |
D | main.c | 76 uint8_t data[CAN_MAX_DLEN];
|