Lines Matching refs:UI2C_SET_DATA

627UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x00U);             /* Write SLA+W to Register UI2C_TXDA…  in UI2C_WriteByte()
637UI2C_SET_DATA(ui2c, data); /* Write data to UI2C_TXDAT */ in UI2C_WriteByte()
713UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x00U); /* Write SLA+W to Register UI2C_TXDA… in UI2C_WriteMultiBytes()
721UI2C_SET_DATA(ui2c, data[u32txLen++]); /* Write data to UI2C_TXDAT */ in UI2C_WriteMultiBytes()
794UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x00U); /* Write SLA+W to Register UI2C_TXDA… in UI2C_WriteByteOneReg()
803UI2C_SET_DATA(ui2c, u8DataAddr); /* Write data address to UI2C_TXDAT */ in UI2C_WriteByteOneReg()
808UI2C_SET_DATA(ui2c, data); /* Write data to UI2C_TXDAT */ in UI2C_WriteByteOneReg()
887UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x00U); /* Write SLA+W to Register UI2C_TXDA… in UI2C_WriteMultiBytesOneReg()
897UI2C_SET_DATA(ui2c, u8DataAddr); /* Write data address to UI2C_TXDAT */ in UI2C_WriteMultiBytesOneReg()
903UI2C_SET_DATA(ui2c, data[u32txLen++]); /* Write data to UI2C_TXDAT */ in UI2C_WriteMultiBytesOneReg()
977UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x00U); /* Write SLA+W to Register UI2C_… in UI2C_WriteByteTwoRegs()
986UI2C_SET_DATA(ui2c, (uint8_t)((u16DataAddr & 0xFF00U) >> 8U)); /* Write Hi byte data address to U… in UI2C_WriteByteTwoRegs()
991UI2C_SET_DATA(ui2c, (uint8_t)(u16DataAddr & 0xFFU)); /* Write Lo byte data address to UI2C… in UI2C_WriteByteTwoRegs()
996UI2C_SET_DATA(ui2c, data); /* Write data to UI2C_TXDAT */ in UI2C_WriteByteTwoRegs()
1075UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x00U); /* Write SLA+W to Register UI2C_… in UI2C_WriteMultiBytesTwoRegs()
1085UI2C_SET_DATA(ui2c, (uint8_t)((u16DataAddr & 0xFF00U) >> 8U)); /* Write Hi byte data address to U… in UI2C_WriteMultiBytesTwoRegs()
1092UI2C_SET_DATA(ui2c, (uint8_t)(u16DataAddr & 0xFFU)); /* Write Lo byte data address to UI2C… in UI2C_WriteMultiBytesTwoRegs()
1099UI2C_SET_DATA(ui2c, data[u32txLen++]); /* Write data to UI2C_TXDAT */ in UI2C_WriteMultiBytesTwoRegs()
1172UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x01U); /* Write SLA+R to Register UI2C_TXDA… in UI2C_ReadByte()
1262UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x01U); /* Write SLA+R to Register UI2C_TXDA… in UI2C_ReadMultiBytes()
1359UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x00U); /* Write SLA+W to Register UI2C_TXDAT */ in UI2C_ReadByteOneReg()
1364UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x01U); /* Write SLA+R to Register TXDAT */ in UI2C_ReadByteOneReg()
1376UI2C_SET_DATA(ui2c, u8DataAddr); /* Write data address of register */ in UI2C_ReadByteOneReg()
1477UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x00U); /* Write SLA+W to Register UI2C_TXDAT */ in UI2C_ReadMultiBytesOneReg()
1482UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x01U); /* Write SLA+R to Register TXDAT */ in UI2C_ReadMultiBytesOneReg()
1494UI2C_SET_DATA(ui2c, u8DataAddr); /* Write data address of register */ in UI2C_ReadMultiBytesOneReg()
1592UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x00U); /* Write SLA+W to Register UI2C_TXDAT */ in UI2C_ReadByteTwoRegs()
1597UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x01U); /* Write SLA+R to Register TXDAT */ in UI2C_ReadByteTwoRegs()
1609UI2C_SET_DATA(ui2c, (uint8_t)((u16DataAddr & 0xFF00U) >> 8U)); /* Write Hi byte address of regist… in UI2C_ReadByteTwoRegs()
1616UI2C_SET_DATA(ui2c, (uint8_t)(u16DataAddr & 0xFFU)); /* Write Lo byte address of register */ in UI2C_ReadByteTwoRegs()
1717UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x00U); /* Write SLA+W to Register UI2C_TXDAT */ in UI2C_ReadMultiBytesTwoRegs()
1722UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x01U); /* Write SLA+R to Register TXDAT */ in UI2C_ReadMultiBytesTwoRegs()
1734UI2C_SET_DATA(ui2c, (uint8_t)((u16DataAddr & 0xFF00U) >> 8U)); /* Write Hi byte address of regist… in UI2C_ReadMultiBytesTwoRegs()
1741UI2C_SET_DATA(ui2c, (uint8_t)(u16DataAddr & 0xFFU)); /* Write Lo byte address of register */ in UI2C_ReadMultiBytesTwoRegs()