15#ifndef ZEPHYR_INCLUDE_DRIVERS_CAN_H_
16#define ZEPHYR_INCLUDE_DRIVERS_CAN_H_
53#define CAN_STD_ID_MASK 0x7FFU
58#define CAN_EXT_ID_MASK 0x1FFFFFFFU
68#define CANFD_MAX_DLC 15U
74#ifndef CONFIG_CAN_FD_MODE
75#define CAN_MAX_DLEN 8U
77#define CAN_MAX_DLEN 64U
92#define CAN_MODE_NORMAL 0
95#define CAN_MODE_LOOPBACK BIT(0)
98#define CAN_MODE_LISTENONLY BIT(1)
101#define CAN_MODE_FD BIT(2)
104#define CAN_MODE_ONE_SHOT BIT(3)
107#define CAN_MODE_3_SAMPLES BIT(4)
110#define CAN_MODE_MANUAL_RECOVERY BIT(5)
148#define CAN_FRAME_IDE BIT(0)
151#define CAN_FRAME_RTR BIT(1)
154#define CAN_FRAME_FDF BIT(2)
157#define CAN_FRAME_BRS BIT(3)
162#define CAN_FRAME_ESI BIT(4)
176#if defined(CONFIG_CAN_RX_TIMESTAMP) || defined(__DOXYGEN__)
208#define CAN_FILTER_IDE BIT(0)
332#define CAN_CALC_TDCO(_timing_data, _tdco_min, _tdco_max) \
333 CLAMP((1U + _timing_data->prop_seg + _timing_data->phase_seg1) * _timing_data->prescaler, \
334 _tdco_min, _tdco_max)
353#ifdef CONFIG_CAN_FD_MODE
368#define CAN_DT_DRIVER_CONFIG_GET(node_id, _min_bitrate, _max_bitrate) \
370 .phy = DEVICE_DT_GET_OR_NULL(DT_PHANDLE(node_id, phys)), \
371 .min_bitrate = DT_CAN_TRANSCEIVER_MIN_BITRATE(node_id, _min_bitrate), \
372 .max_bitrate = DT_CAN_TRANSCEIVER_MAX_BITRATE(node_id, _max_bitrate), \
373 .bitrate = DT_PROP_OR(node_id, bitrate, \
374 DT_PROP_OR(node_id, bus_speed, CONFIG_CAN_DEFAULT_BITRATE)), \
375 .sample_point = DT_PROP_OR(node_id, sample_point, 0), \
376 IF_ENABLED(CONFIG_CAN_FD_MODE, \
377 (.bitrate_data = DT_PROP_OR(node_id, bitrate_data, \
378 DT_PROP_OR(node_id, bus_speed_data, CONFIG_CAN_DEFAULT_BITRATE_DATA)), \
379 .sample_point_data = DT_PROP_OR(node_id, sample_point_data, 0),)) \
390#define CAN_DT_DRIVER_CONFIG_INST_GET(inst, _min_bitrate, _max_bitrate) \
391 CAN_DT_DRIVER_CONFIG_GET(DT_DRV_INST(inst), _min_bitrate, _max_bitrate)
544#if defined(CONFIG_CAN_MANUAL_RECOVERY_MODE) || defined(__DOXYGEN__)
571#if defined(CONFIG_CAN_FD_MODE) || defined(__DOXYGEN__)
591#if defined(CONFIG_CAN_STATS) || defined(__DOXYGEN__)
637#define Z_CAN_GET_STATS(dev_) \
638 CONTAINER_OF(dev_->state, struct can_device_state, devstate)->stats
658#define CAN_STATS_BIT_ERROR_INC(dev_) \
659 STATS_INC(Z_CAN_GET_STATS(dev_), bit_error)
672#define CAN_STATS_BIT0_ERROR_INC(dev_) \
674 STATS_INC(Z_CAN_GET_STATS(dev_), bit0_error); \
675 CAN_STATS_BIT_ERROR_INC(dev_); \
689#define CAN_STATS_BIT1_ERROR_INC(dev_) \
691 STATS_INC(Z_CAN_GET_STATS(dev_), bit1_error); \
692 CAN_STATS_BIT_ERROR_INC(dev_); \
703#define CAN_STATS_STUFF_ERROR_INC(dev_) \
704 STATS_INC(Z_CAN_GET_STATS(dev_), stuff_error)
714#define CAN_STATS_CRC_ERROR_INC(dev_) \
715 STATS_INC(Z_CAN_GET_STATS(dev_), crc_error)
725#define CAN_STATS_FORM_ERROR_INC(dev_) \
726 STATS_INC(Z_CAN_GET_STATS(dev_), form_error)
736#define CAN_STATS_ACK_ERROR_INC(dev_) \
737 STATS_INC(Z_CAN_GET_STATS(dev_), ack_error)
748#define CAN_STATS_RX_OVERRUN_INC(dev_) \
749 STATS_INC(Z_CAN_GET_STATS(dev_), rx_overrun)
759#define CAN_STATS_RESET(dev_) \
760 stats_reset(&(Z_CAN_GET_STATS(dev_).s_hdr))
767#define Z_CAN_DEVICE_STATE_DEFINE(dev_id) \
768 static struct can_device_state Z_DEVICE_STATE_NAME(dev_id) \
769 __attribute__((__section__(".z_devstate")))
777#define Z_CAN_INIT_FN(dev_id, init_fn) \
778 static inline int UTIL_CAT(dev_id, _init)(const struct device *dev) \
780 struct can_device_state *state = \
781 CONTAINER_OF(dev->state, struct can_device_state, devstate); \
782 stats_init(&state->stats.s_hdr, STATS_SIZE_32, 8, \
783 STATS_NAME_INIT_PARMS(can)); \
784 stats_register(dev->name, &(state->stats.s_hdr)); \
785 if (!is_null_no_warn(init_fn)) { \
786 return init_fn(dev); \
814#define CAN_DEVICE_DT_DEFINE(node_id, init_fn, pm, data, config, level, \
816 Z_CAN_DEVICE_STATE_DEFINE(Z_DEVICE_DT_DEV_ID(node_id)); \
817 Z_CAN_INIT_FN(Z_DEVICE_DT_DEV_ID(node_id), init_fn) \
818 Z_DEVICE_DEFINE(node_id, Z_DEVICE_DT_DEV_ID(node_id), \
819 DEVICE_DT_NAME(node_id), \
820 &UTIL_CAT(Z_DEVICE_DT_DEV_ID(node_id), _init), \
821 NULL, Z_DEVICE_DT_FLAGS(node_id), pm, data, \
822 config, level, prio, api, \
823 &(Z_DEVICE_STATE_NAME(Z_DEVICE_DT_DEV_ID(node_id)).devstate), \
828#define CAN_STATS_BIT_ERROR_INC(dev_)
829#define CAN_STATS_BIT0_ERROR_INC(dev_)
830#define CAN_STATS_BIT1_ERROR_INC(dev_)
831#define CAN_STATS_STUFF_ERROR_INC(dev_)
832#define CAN_STATS_CRC_ERROR_INC(dev_)
833#define CAN_STATS_FORM_ERROR_INC(dev_)
834#define CAN_STATS_ACK_ERROR_INC(dev_)
835#define CAN_STATS_RX_OVERRUN_INC(dev_)
836#define CAN_STATS_RESET(dev_)
838#define CAN_DEVICE_DT_DEFINE(node_id, init_fn, pm, data, config, level, \
840 DEVICE_DT_DEFINE(node_id, init_fn, pm, data, config, level, \
841 prio, api, __VA_ARGS__)
852#define CAN_DEVICE_DT_INST_DEFINE(inst, ...) \
853 CAN_DEVICE_DT_DEFINE(DT_DRV_INST(inst), __VA_ARGS__)
875static inline int z_impl_can_get_core_clock(
const struct device *dev,
uint32_t *rate)
898static inline uint32_t z_impl_can_get_bitrate_min(
const struct device *dev)
902 return common->min_bitrate;
923static inline uint32_t z_impl_can_get_bitrate_max(
const struct device *dev)
927 return common->max_bitrate;
939static inline const struct can_timing *z_impl_can_get_timing_min(
const struct device *dev)
953static inline const struct can_timing *z_impl_can_get_timing_max(
const struct device *dev)
1002#ifdef CONFIG_CAN_FD_MODE
1003static inline const struct can_timing *z_impl_can_get_timing_data_min(
const struct device *dev)
1024#ifdef CONFIG_CAN_FD_MODE
1025static inline const struct can_timing *z_impl_can_get_timing_data_max(
const struct device *dev)
1135static inline int z_impl_can_get_capabilities(
const struct device *dev,
can_mode_t *cap)
1151static const struct device *z_impl_can_get_transceiver(
const struct device *dev)
1177static inline int z_impl_can_start(
const struct device *dev)
1199static inline int z_impl_can_stop(
const struct device *dev)
1216static inline int z_impl_can_set_mode(
const struct device *dev,
can_mode_t mode)
1234 return common->mode;
1353 void *user_data,
const struct can_filter *filter);
1365#define CAN_MSGQ_DEFINE(name, max_frames) \
1366 K_MSGQ_DEFINE(name, sizeof(struct can_frame), max_frames, 4)
1410static inline void z_impl_can_remove_rx_filter(
const struct device *dev,
int filter_id)
1430static inline int z_impl_can_get_max_filters(
const struct device *dev,
bool ide)
1491#ifdef CONFIG_CAN_MANUAL_RECOVERY_MODE
1492static inline int z_impl_can_recover(
const struct device *dev,
k_timeout_t timeout)
1500 return api->
recover(dev, timeout);
1521 DEVICE_API_GET(can, dev)->set_state_change_callback(dev, callback, user_data);
1546#ifdef CONFIG_CAN_STATS
1547static inline uint32_t z_impl_can_stats_get_bit_errors(
const struct device *dev)
1549 return Z_CAN_GET_STATS(dev).bit_error;
1569#ifdef CONFIG_CAN_STATS
1570static inline uint32_t z_impl_can_stats_get_bit0_errors(
const struct device *dev)
1572 return Z_CAN_GET_STATS(dev).bit0_error;
1592#ifdef CONFIG_CAN_STATS
1593static inline uint32_t z_impl_can_stats_get_bit1_errors(
const struct device *dev)
1595 return Z_CAN_GET_STATS(dev).bit1_error;
1613#ifdef CONFIG_CAN_STATS
1614static inline uint32_t z_impl_can_stats_get_stuff_errors(
const struct device *dev)
1616 return Z_CAN_GET_STATS(dev).stuff_error;
1634#ifdef CONFIG_CAN_STATS
1635static inline uint32_t z_impl_can_stats_get_crc_errors(
const struct device *dev)
1637 return Z_CAN_GET_STATS(dev).crc_error;
1655#ifdef CONFIG_CAN_STATS
1656static inline uint32_t z_impl_can_stats_get_form_errors(
const struct device *dev)
1658 return Z_CAN_GET_STATS(dev).form_error;
1676#ifdef CONFIG_CAN_STATS
1677static inline uint32_t z_impl_can_stats_get_ack_errors(
const struct device *dev)
1679 return Z_CAN_GET_STATS(dev).ack_error;
1698#ifdef CONFIG_CAN_STATS
1699static inline uint32_t z_impl_can_stats_get_rx_overruns(
const struct device *dev)
1701 return Z_CAN_GET_STATS(dev).rx_overrun;
1722 static const uint8_t dlc_table[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 12,
1723 16, 20, 24, 32, 48, 64};
1737 return num_bytes <= 8 ? num_bytes :
1738 num_bytes <= 12 ? 9 :
1739 num_bytes <= 16 ? 10 :
1740 num_bytes <= 20 ? 11 :
1741 num_bytes <= 24 ? 12 :
1742 num_bytes <= 32 ? 13 :
1743 num_bytes <= 48 ? 14 :
1767 if ((frame->
id ^ filter->
id) & filter->
mask) {
1785#include <zephyr/syscalls/can.h>
#define DEVICE_API_GET(_class, _dev)
Expands to the pointer of a device's API for a given class.
Definition device.h:1353
int(* can_set_timing_t)(const struct device *dev, const struct can_timing *timing)
Callback API upon setting CAN bus timing See can_set_timing() for argument description.
Definition can.h:414
int(* can_get_state_t)(const struct device *dev, enum can_state *state, struct can_bus_err_cnt *err_cnt)
Callback API upon getting the CAN controller state See can_get_state() for argument description.
Definition can.h:485
int(* can_stop_t)(const struct device *dev)
Callback API upon stopping CAN controller See can_stop() for argument description.
Definition can.h:440
void(* can_remove_rx_filter_t)(const struct device *dev, int filter_id)
Callback API upon removing an RX filter See can_remove_rx_filter() for argument description.
Definition can.h:473
int(* can_set_mode_t)(const struct device *dev, can_mode_t mode)
Callback API upon setting CAN controller mode See can_set_mode() for argument description.
Definition can.h:446
int(* can_get_capabilities_t)(const struct device *dev, can_mode_t *cap)
Callback API upon getting CAN controller capabilities See can_get_capabilities() for argument descrip...
Definition can.h:428
int(* can_add_rx_filter_t)(const struct device *dev, can_rx_callback_t callback, void *user_data, const struct can_filter *filter)
Callback API upon adding an RX filter See can_add_rx_callback() for argument description.
Definition can.h:464
int(* can_get_core_clock_t)(const struct device *dev, uint32_t *rate)
Callback API upon getting the CAN core clock rate See can_get_core_clock() for argument description.
Definition can.h:500
int(* can_set_timing_data_t)(const struct device *dev, const struct can_timing *timing_data)
Optional callback API upon setting CAN FD bus timing for the data phase.
Definition can.h:421
int(* can_send_t)(const struct device *dev, const struct can_frame *frame, k_timeout_t timeout, can_tx_callback_t callback, void *user_data)
Callback API upon sending a CAN frame See can_send() for argument description.
Definition can.h:455
int(* can_recover_t)(const struct device *dev, k_timeout_t timeout)
Optional callback API upon manually recovering the CAN controller from bus-off state See can_recover(...
Definition can.h:479
int(* can_get_max_filters_t)(const struct device *dev, bool ide)
Optional callback API upon getting the maximum number of concurrent CAN RX filters See can_get_max_fi...
Definition can.h:506
void(* can_set_state_change_callback_t)(const struct device *dev, can_state_change_callback_t callback, void *user_data)
Callback API upon setting a state change callback See can_set_state_change_callback() for argument de...
Definition can.h:492
int(* can_start_t)(const struct device *dev)
Callback API upon starting CAN controller See can_start() for argument description.
Definition can.h:434
void(* can_state_change_callback_t)(const struct device *dev, enum can_state state, struct can_bus_err_cnt err_cnt, void *user_data)
Defines the state change callback handler function signature.
Definition can.h:309
int can_set_bitrate(const struct device *dev, uint32_t bitrate)
Set the bitrate of the CAN controller.
int can_set_bitrate_data(const struct device *dev, uint32_t bitrate_data)
Set the bitrate for the data phase of the CAN FD controller.
uint32_t can_mode_t
Provides a type to hold CAN controller configuration flags.
Definition can.h:122
uint32_t can_stats_get_stuff_errors(const struct device *dev)
Get the stuffing error counter for a CAN device.
int can_stop(const struct device *dev)
Stop the CAN controller.
int can_set_timing(const struct device *dev, const struct can_timing *timing)
Configure the bus timing of a CAN controller.
uint32_t can_get_bitrate_max(const struct device *dev)
Get maximum supported bitrate.
uint32_t can_stats_get_bit_errors(const struct device *dev)
Get the bit error counter for a CAN device.
uint32_t can_stats_get_crc_errors(const struct device *dev)
Get the CRC error counter for a CAN device.
uint32_t can_get_bitrate_min(const struct device *dev)
Get minimum supported bitrate.
int can_calc_timing_data(const struct device *dev, struct can_timing *res, uint32_t bitrate, uint16_t sample_pnt)
Calculate timing parameters for the data phase.
int can_send(const struct device *dev, const struct can_frame *frame, k_timeout_t timeout, can_tx_callback_t callback, void *user_data)
Queue a CAN frame for transmission on the CAN bus.
const struct can_timing * can_get_timing_data_max(const struct device *dev)
Get the maximum supported timing parameter values for the data phase.
int can_get_core_clock(const struct device *dev, uint32_t *rate)
Get the CAN core clock rate.
int can_get_capabilities(const struct device *dev, can_mode_t *cap)
Get the supported modes of the CAN controller.
uint32_t can_stats_get_bit1_errors(const struct device *dev)
Get the bit1 error counter for a CAN device.
uint32_t can_stats_get_ack_errors(const struct device *dev)
Get the acknowledge error counter for a CAN device.
int can_get_max_filters(const struct device *dev, bool ide)
Get maximum number of RX filters.
const struct can_timing * can_get_timing_min(const struct device *dev)
Get the minimum supported timing parameter values.
int can_set_timing_data(const struct device *dev, const struct can_timing *timing_data)
Configure the bus timing for the data phase of a CAN FD controller.
const struct can_timing * can_get_timing_data_min(const struct device *dev)
Get the minimum supported timing parameter values for the data phase.
uint32_t can_stats_get_bit0_errors(const struct device *dev)
Get the bit0 error counter for a CAN device.
void can_remove_rx_filter(const struct device *dev, int filter_id)
Remove a CAN RX filter.
static uint8_t can_bytes_to_dlc(uint8_t num_bytes)
Convert from number of bytes to Data Length Code (DLC).
Definition can.h:1735
uint32_t can_stats_get_rx_overruns(const struct device *dev)
Get the RX overrun counter for a CAN device.
#define CAN_FRAME_IDE
Frame uses extended (29-bit) CAN ID.
Definition can.h:148
static uint8_t can_dlc_to_bytes(uint8_t dlc)
Convert from Data Length Code (DLC) to the number of data bytes.
Definition can.h:1720
int can_add_rx_filter_msgq(const struct device *dev, struct k_msgq *msgq, const struct can_filter *filter)
Simple wrapper function for adding a message queue for a given filter.
void(* can_rx_callback_t)(const struct device *dev, struct can_frame *frame, void *user_data)
Defines the application callback handler function signature for receiving.
Definition can.h:298
static bool can_frame_matches_filter(const struct can_frame *frame, const struct can_filter *filter)
Check if a CAN frame matches a CAN filter.
Definition can.h:1754
void(* can_tx_callback_t)(const struct device *dev, int error, void *user_data)
Defines the application callback handler function signature.
Definition can.h:289
int can_get_state(const struct device *dev, enum can_state *state, struct can_bus_err_cnt *err_cnt)
Get current CAN controller state.
can_mode_t can_get_mode(const struct device *dev)
Get the operation mode of the CAN controller.
const struct can_timing * can_get_timing_max(const struct device *dev)
Get the maximum supported timing parameter values.
uint32_t can_stats_get_form_errors(const struct device *dev)
Get the form error counter for a CAN device.
int can_calc_timing(const struct device *dev, struct can_timing *res, uint32_t bitrate, uint16_t sample_pnt)
Calculate timing parameters from bitrate and sample point.
int can_recover(const struct device *dev, k_timeout_t timeout)
Recover from bus-off state.
can_state
Defines the state of the CAN controller.
Definition can.h:127
static void can_set_state_change_callback(const struct device *dev, can_state_change_callback_t callback, void *user_data)
Set a callback for CAN controller state change events.
Definition can.h:1517
const struct device * can_get_transceiver(const struct device *dev)
Get the CAN transceiver associated with the CAN controller.
int can_set_mode(const struct device *dev, can_mode_t mode)
Set the CAN controller to the given operation mode.
int can_start(const struct device *dev)
Start the CAN controller.
int can_add_rx_filter(const struct device *dev, can_rx_callback_t callback, void *user_data, const struct can_filter *filter)
Add a callback function for a given CAN filter.
#define CAN_FILTER_IDE
Filter matches frames with extended (29-bit) CAN IDs.
Definition can.h:208
@ CAN_STATE_ERROR_ACTIVE
Error-active state (RX/TX error count < 96).
Definition can.h:129
@ CAN_STATE_ERROR_WARNING
Error-warning state (RX/TX error count < 128).
Definition can.h:131
@ CAN_STATE_STOPPED
CAN controller is stopped and does not participate in CAN communication.
Definition can.h:137
@ CAN_STATE_BUS_OFF
Bus-off state (RX/TX error count >= 256).
Definition can.h:135
@ CAN_STATE_ERROR_PASSIVE
Error-passive state (RX/TX error count < 256).
Definition can.h:133
#define MIN(a, b)
Obtain the minimum of two values.
Definition util.h:448
#define ARRAY_SIZE(array)
Number of elements in the given array.
Definition util.h:118
#define DIV_ROUND_UP(n, d)
Divide and round up.
Definition util.h:348
#define ENOSYS
Function not implemented.
Definition errno.h:82
#define NULL
Definition iar_missing_defs.h:20
state
Definition parser_state.h:29
#define STATS_NAME_END(name__)
Definition stats.h:391
#define STATS_NAME(name__, entry__)
Definition stats.h:390
#define STATS_SECT_END
Ends a stats group struct definition.
Definition stats.h:89
#define STATS_SECT_ENTRY32(var__)
Definition stats.h:359
#define STATS_NAME_START(name__)
Definition stats.h:389
#define STATS_SECT_START(group__)
Definition stats.h:354
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
__UINT16_TYPE__ uint16_t
Definition stdint.h:89
CAN controller error counters.
Definition can.h:229
uint8_t tx_err_cnt
Value of the CAN controller transmit error counter.
Definition can.h:231
uint8_t rx_err_cnt
Value of the CAN controller receive error counter.
Definition can.h:233
CAN specific device state which allows for CAN device class specific additions.
Definition can.h:625
struct device_state devstate
Common device state.
Definition can.h:627
struct stats_can stats
CAN device statistics.
Definition can.h:629
<span class="mlabel">Driver Operations</span> CAN Controller driver operations
Definition can.h:511
can_get_capabilities_t get_capabilities
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:515
can_set_timing_data_t set_timing_data
<span class="op-badge op-opt" title="This operation MAY optionally be implemented by the driver....
Definition can.h:576
can_get_max_filters_t get_max_filters
<span class="op-badge op-opt" title="This operation MAY optionally be implemented by the driver....
Definition can.h:566
can_set_timing_t set_timing
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:531
can_stop_t stop
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:523
can_set_state_change_callback_t set_state_change_callback
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:558
can_add_rx_filter_t add_rx_filter
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:539
struct can_timing timing_data_min
Min values for the timing registers during the data phase.
Definition can.h:580
struct can_timing timing_max
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:570
can_send_t send
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:535
can_get_state_t get_state
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:554
can_recover_t recover
<span class="op-badge op-opt" title="This operation MAY optionally be implemented by the driver....
Definition can.h:549
struct can_timing timing_data_max
Max values for the timing registers during the data phase.
Definition can.h:584
can_remove_rx_filter_t remove_rx_filter
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:543
can_start_t start
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:519
can_set_mode_t set_mode
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:527
can_get_core_clock_t get_core_clock
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:562
struct can_timing timing_min
<span class="op-badge op-req" title="This operation MUST be implemented by the driver....
Definition can.h:568
Common CAN controller driver configuration.
Definition can.h:342
uint16_t sample_point
Initial CAN classic/CAN FD arbitration phase sample point in permille.
Definition can.h:352
uint32_t max_bitrate
The maximum bitrate supported by the CAN controller/transceiver combination.
Definition can.h:348
uint32_t bitrate
Initial CAN classic/CAN FD arbitration phase bitrate.
Definition can.h:350
const struct device * phy
Pointer to the device structure for the associated CAN transceiver device or NULL.
Definition can.h:344
uint32_t min_bitrate
The minimum bitrate supported by the CAN controller/transceiver combination.
Definition can.h:346
Common CAN controller driver data.
Definition can.h:399
can_mode_t mode
Current CAN controller mode.
Definition can.h:401
bool started
True if the CAN controller is started, false otherwise.
Definition can.h:403
void * state_change_cb_user_data
State change callback user data pointer or NULL.
Definition can.h:407
can_state_change_callback_t state_change_cb
State change callback function pointer or NULL.
Definition can.h:405
CAN filter structure.
Definition can.h:215
uint32_t mask
CAN identifier matching mask.
Definition can.h:221
uint8_t flags
Flags.
Definition can.h:223
uint32_t id
CAN identifier to match.
Definition can.h:217
CAN frame structure.
Definition can.h:169
uint8_t dlc
Data Length Code (DLC) indicating data length in bytes.
Definition can.h:173
uint8_t flags
Flags.
Definition can.h:175
uint32_t id
Standard (11-bit) or extended (29-bit) CAN identifier.
Definition can.h:171
uint8_t data[CAN_MAX_DLEN]
Payload data accessed as unsigned 8 bit values.
Definition can.h:194
uint32_t data_32[DIV_ROUND_UP(CAN_MAX_DLEN, sizeof(uint32_t))]
Payload data accessed as unsigned 32 bit values.
Definition can.h:196
uint16_t timestamp
Captured value of the free-running timer in the CAN controller when this frame was received.
Definition can.h:184
CAN bus timing structure.
Definition can.h:268
uint16_t sjw
Synchronisation jump width.
Definition can.h:270
uint16_t phase_seg2
Phase segment 2.
Definition can.h:276
uint16_t prescaler
Prescaler value.
Definition can.h:278
uint16_t phase_seg1
Phase segment 1.
Definition can.h:274
uint16_t prop_seg
Propagation segment.
Definition can.h:272
Runtime device dynamic structure (in RAM) per driver instance.
Definition device.h:458
Runtime device structure (in ROM) per driver instance.
Definition device.h:513
void * data
Address of the device instance private data.
Definition device.h:523
const void * config
Address of device instance config information.
Definition device.h:517
Message Queue Structure.
Definition kernel.h:5070
Kernel timeout type.
Definition clock.h:65