Lines Matching refs:UI2C_SET_DATA

635UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x00U);             /* Write SLA+W to Register UI2C_TXDA…  in UI2C_WriteByte()
645UI2C_SET_DATA(ui2c, data); /* Write data to UI2C_TXDAT */ in UI2C_WriteByte()
709UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x00U); /* Write SLA+W to Register UI2C_TXDA… in UI2C_WriteMultiBytes()
717UI2C_SET_DATA(ui2c, data[u32txLen++]); /* Write data to UI2C_TXDAT */ in UI2C_WriteMultiBytes()
778UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x00U); /* Write SLA+W to Register UI2C_TXDA… in UI2C_WriteByteOneReg()
787UI2C_SET_DATA(ui2c, u8DataAddr); /* Write data address to UI2C_TXDAT */ in UI2C_WriteByteOneReg()
792UI2C_SET_DATA(ui2c, data); /* Write data to UI2C_TXDAT */ in UI2C_WriteByteOneReg()
859UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x00U); /* Write SLA+W to Register UI2C_TXDA… in UI2C_WriteMultiBytesOneReg()
869UI2C_SET_DATA(ui2c, u8DataAddr); /* Write data address to UI2C_TXDAT */ in UI2C_WriteMultiBytesOneReg()
875UI2C_SET_DATA(ui2c, data[u32txLen++]); /* Write data to UI2C_TXDAT */ in UI2C_WriteMultiBytesOneReg()
937UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x00U); /* Write SLA+W to Register UI2C_… in UI2C_WriteByteTwoRegs()
946UI2C_SET_DATA(ui2c, (uint8_t)((u16DataAddr & 0xFF00U) >> 8U)); /* Write Hi byte data address to U… in UI2C_WriteByteTwoRegs()
951UI2C_SET_DATA(ui2c, (uint8_t)(u16DataAddr & 0xFFU)); /* Write Lo byte data address to UI2C… in UI2C_WriteByteTwoRegs()
956UI2C_SET_DATA(ui2c, data); /* Write data to UI2C_TXDAT */ in UI2C_WriteByteTwoRegs()
1023UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x00U); /* Write SLA+W to Register UI2C_… in UI2C_WriteMultiBytesTwoRegs()
1033UI2C_SET_DATA(ui2c, (uint8_t)((u16DataAddr & 0xFF00U) >> 8U)); /* Write Hi byte data address to U… in UI2C_WriteMultiBytesTwoRegs()
1040UI2C_SET_DATA(ui2c, (uint8_t)(u16DataAddr & 0xFFU)); /* Write Lo byte data address to UI2C… in UI2C_WriteMultiBytesTwoRegs()
1047UI2C_SET_DATA(ui2c, data[u32txLen++]); /* Write data to UI2C_TXDAT */ in UI2C_WriteMultiBytesTwoRegs()
1107UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x01U); /* Write SLA+R to Register UI2C_TXDA… in UI2C_ReadByte()
1186UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x01U); /* Write SLA+R to Register UI2C_TXDA… in UI2C_ReadMultiBytes()
1271UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x00U); /* Write SLA+W to Register UI2C_TXDAT */ in UI2C_ReadByteOneReg()
1276UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x01U); /* Write SLA+R to Register TXDAT */ in UI2C_ReadByteOneReg()
1288UI2C_SET_DATA(ui2c, u8DataAddr); /* Write data address of register */ in UI2C_ReadByteOneReg()
1378UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x00U); /* Write SLA+W to Register UI2C_TXDAT */ in UI2C_ReadMultiBytesOneReg()
1383UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x01U); /* Write SLA+R to Register TXDAT */ in UI2C_ReadMultiBytesOneReg()
1395UI2C_SET_DATA(ui2c, u8DataAddr); /* Write data address of register */ in UI2C_ReadMultiBytesOneReg()
1481UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x00U); /* Write SLA+W to Register UI2C_TXDAT */ in UI2C_ReadByteTwoRegs()
1486UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x01U); /* Write SLA+R to Register TXDAT */ in UI2C_ReadByteTwoRegs()
1498UI2C_SET_DATA(ui2c, (uint8_t)((u16DataAddr & 0xFF00U) >> 8U)); /* Write Hi byte address of regist… in UI2C_ReadByteTwoRegs()
1505UI2C_SET_DATA(ui2c, (uint8_t)(u16DataAddr & 0xFFU)); /* Write Lo byte address of register */ in UI2C_ReadByteTwoRegs()
1595UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x00U); /* Write SLA+W to Register UI2C_TXDAT */ in UI2C_ReadMultiBytesTwoRegs()
1600UI2C_SET_DATA(ui2c, (u8SlaveAddr << 1U) | 0x01U); /* Write SLA+R to Register TXDAT */ in UI2C_ReadMultiBytesTwoRegs()
1612UI2C_SET_DATA(ui2c, (uint8_t)((u16DataAddr & 0xFF00U) >> 8U)); /* Write Hi byte address of regist… in UI2C_ReadMultiBytesTwoRegs()
1619UI2C_SET_DATA(ui2c, (uint8_t)(u16DataAddr & 0xFFU)); /* Write Lo byte address of register */ in UI2C_ReadMultiBytesTwoRegs()