canmsg_t

CAN message list element

Synopsis:

#include <hw/libcan.h>
#include <sys/can_dcmd.h>

typedef struct _canmsg {
    CAN_MSG         cmsg;
    struct _canmsg *next;
    struct _canmsg *prev;
} canmsg_t;

Description:

The canmsg_t structure contains a single CAN message encapsulated in a can_msg instance and links to previous and next messages in the message list canmsg_list_t instance.

The members include:

cmsg

A CAN message; a can_msg instance.

next

A pointer to the next message element.

prev

A pointer to a previous message.

Page updated: