2.109.16 SENT_DATA_RECEIVE Struct

C

typedef struct
{  
    uint8_t crc:4;     /**< Defines the CRC field */
    uint8_t data1:4;   /**< Defines the first data nibble field */       
    uint8_t data2:4;   /**< Defines the second data nibble field */
    uint8_t data3:4;   /**< Defines the third data nibble field */
    uint8_t data4:4;   /**< Defines the fourth data nibble field */
    uint8_t data5:4;   /**< Defines the fifth data nibble field */
    uint8_t data6:4;   /**< Defines the sixth data nibble field */
    uint8_t status:4;  /**< Defines the status field */
}SENT_DATA_RECEIVE;

Summary

This data structure configures the SENT data packet.

Description

Defines the structure for a data packet received via the receiver.

Remarks

None