Subversion Repositories HomeAutomation

Rev

Rev 63 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 63 Rev 69
Line 37... Line 37...
37
/**
37
/**
38
 * CAN Message Type. Stores a complete CAN frame.
38
 * CAN Message Type. Stores a complete CAN frame.
39
 */
39
 */
40
typedef struct {
40
typedef struct {
41
    /*
41
    /*
42
     * ID section. Contains either 29bit ID or 11bit ID (depending on ExtFlag).
42
     * ID section. Contains either 29bit ID or 11bit ID (depending on ExtendedFlag).
43
     */
43
     */
44
    uint32_t Id;
44
    uint32_t Id;
45
   
45
   
46
    /*
46
    /*
47
     * DLC section. Contains the data length expressed in number of bytes. Range [0,8].
47
     * DLC section. Contains the data length expressed in number of bytes. Range [0,8].