Home
last modified time | relevance | path

Searched refs:CAN_FRAME_BRS (Results 1 – 16 of 16) sorted by relevance

/Zephyr-latest/include/zephyr/net/
Dsocketcan_utils.h43 zframe->flags |= (sframe->flags & CANFD_BRS) != 0 ? CAN_FRAME_BRS : 0; in socketcan_to_can_frame()
73 if ((zframe->flags & CAN_FRAME_BRS) != 0) { in socketcan_from_can_frame()
/Zephyr-latest/tests/drivers/can/api/src/
Dcommon.c90 .flags = CAN_FRAME_FDF | CAN_FRAME_BRS,
104 .flags = CAN_FRAME_FDF | CAN_FRAME_BRS,
Dcanfd.c247 .flags = CAN_FRAME_FDF | CAN_FRAME_BRS, in ZTEST()
/Zephyr-latest/drivers/can/
Dcan_nxp_s32_canxl.c586 if ((frame->flags & ~(CAN_FRAME_IDE | CAN_FRAME_FDF | CAN_FRAME_BRS)) != 0) { in can_nxp_s32_send()
597 if ((frame->flags & CAN_FRAME_BRS) != 0 && in can_nxp_s32_send()
655 .enable_brs = !!(frame->flags & CAN_FRAME_BRS) ? TRUE : FALSE, in can_nxp_s32_send()
673 !!(frame->flags & CAN_FRAME_BRS) ? "BRS" : ""); in can_nxp_s32_send()
856 frame->flags |= CAN_FRAME_BRS; in nxp_s32_msg_data_to_zcan_frame()
912 !!(frame.flags & CAN_FRAME_BRS) ? "BRS" : ""); in can_nxp_s32_ctrl_callback()
936 !!(frame.flags & CAN_FRAME_BRS) ? "BRS" : ""); in can_nxp_s32_ctrl_callback()
Dcan_renesas_ra.c356 ((p_args->frame.options & CANFD_FRAME_OPTION_BRS) != 0 ? CAN_FRAME_BRS in can_renesas_ra_call_rx_cb()
562 if ((frame->flags & ~(CAN_FRAME_IDE | CAN_FRAME_RTR | CAN_FRAME_FDF | CAN_FRAME_BRS)) != in can_renesas_ra_send()
569 ((frame->flags & (CAN_FRAME_FDF | CAN_FRAME_BRS)) != 0U)) { in can_renesas_ra_send()
611 (((frame->flags & CAN_FRAME_BRS) != 0) ? CANFD_FRAME_OPTION_BRS : 0UL) | in can_renesas_ra_send()
Dcan_mcan.c724 frame.flags |= CAN_FRAME_BRS; in can_mcan_get_message()
918 .brs = (frame->flags & CAN_FRAME_BRS) != 0U ? 1U : 0U, in can_mcan_send()
933 (frame->flags & CAN_FRAME_BRS) != 0U ? "BRS" : ""); in can_mcan_send()
936 if ((frame->flags & ~(CAN_FRAME_IDE | CAN_FRAME_RTR | CAN_FRAME_FDF | CAN_FRAME_BRS)) != in can_mcan_send()
943 ((frame->flags & (CAN_FRAME_FDF | CAN_FRAME_BRS)) != 0U)) { in can_mcan_send()
Dcan_shell.c106 (frame->flags & CAN_FRAME_BRS) == 0 ? '-' : 'B', in can_shell_print_frame()
761 frame.flags |= CAN_FRAME_BRS; in cmd_can_send()
830 (frame.flags & CAN_FRAME_BRS) != 0 ? 1 : 0, in cmd_can_send()
Dcan_loopback.c122 CAN_FRAME_FDF | CAN_FRAME_BRS)) != 0) { in can_loopback_send()
Dcan_native_linux.c147 CAN_FRAME_FDF | CAN_FRAME_BRS)) != 0) { in can_native_linux_send()
Dcan_mcux_flexcan.c564 if ((src->flags & CAN_FRAME_BRS) != 0) { in mcux_flexcan_fd_from_can_frame()
598 dest->flags |= CAN_FRAME_BRS; in mcux_flexcan_fd_to_can_frame()
683 CAN_FRAME_FDF | CAN_FRAME_BRS)) != 0) { in mcux_flexcan_send()
Dcan_xmc4xxx.c157 msg->flags & CAN_FRAME_BRS ? "BRS" : ""); in can_xmc4xxx_send()
171 if ((msg->flags & (CAN_FRAME_FDF | CAN_FRAME_BRS)) != 0) { in can_xmc4xxx_send()
Dcan_mcp251xfd.c36 if ((src->flags & CAN_FRAME_BRS) != 0) { in mcp251xfd_canframe_to_txobj()
219 dst->flags |= CAN_FRAME_BRS; in mcp251xfd_rxobj_to_canframe()
494 msg->flags & CAN_FRAME_BRS ? "BRS" : ""); in mcp251xfd_send()
/Zephyr-latest/tests/drivers/can/shell/src/
Dmain.c442 .flags = CAN_FRAME_FDF | CAN_FRAME_BRS, in ZTEST()
454 .flags = CAN_FRAME_IDE | CAN_FRAME_FDF | CAN_FRAME_BRS | CAN_FRAME_RTR, in ZTEST()
/Zephyr-latest/include/zephyr/drivers/
Dcan.h151 #define CAN_FRAME_BRS BIT(3) macro
/Zephyr-latest/tests/subsys/canbus/isotp/conformance/src/
Dmain.c266 CAN_FRAME_FDF | CAN_FRAME_BRS : 0), in send_frame_series()
/Zephyr-latest/subsys/canbus/isotp/
Disotp.c49 ((addr->flags & ISOTP_MSG_BRS) != 0 ? CAN_FRAME_BRS : 0); in prepare_frame()