2.109.24 SENT_TRANSMIT_STATUS Enum

C

typedef enum
{
    SENT_TRANSMIT_SYNCTXEN = 0x1,      /**< Synchronization Period Status Transmit Enable bit */    
    SENT_TRANSMIT_NIBBLE1 = 0x10,      /**< Module is transmitting Data Nibble 1 */
    SENT_TRANSMIT_NIBBLE2 = 0x20,      /**< Module is transmitting Data Nibble 2 */   
    SENT_TRANSMIT_NIBBLE3 = 0x30,      /**< Module is transmitting Data Nibble 3 */
    SENT_TRANSMIT_NIBBLE4 = 0x40,      /**< Module is transmitting Data Nibble 4 */
    SENT_TRANSMIT_NIBBLE5 = 0x50,      /**< Module is transmitting Data Nibble 5 */ 
    SENT_TRANSMIT_NIBBLE6 = 0x60,      /**< Module is transmitting Data Nibble 6 */
    SENT_TRANSMIT_CRC     = 0x70,      /**< Module is transmitting Data CRC */
    SENT_TRANSMIT_PAUSEPERIOD = 0x80   /**< Indicates whether the module is transmitting a Pause period */
    
}SENT_TRANSMIT_STATUS;

Summary

Defines the SENT transmit status.

Description

This enum defines the SENT transmit status. More than one of these values may be OR'd together to create a complete status value. To test a value of this type, the bit of interest must be AND'ed with value and checked to see if the result is non-zero.

Remarks

None.