struct canque_slot_t

Name

struct canque_slot_t --  one CAN message slot in the CAN FIFO queue

Synopsis

struct canque_slot_t {
  struct canque_slot_t * next;
  unsigned long slot_flags;
  struct canmsg_t msg;
};  

Members

next

pointer to the next/younger slot

slot_flags

space for flags and optional command describing action associated with slot data

msg

space for one CAN message

Description

This structure is used to store CAN messages in the CAN FIFO queue.