Lines Matching refs:u32txLen
805 uint32_t u32txLen = 0u; in I2C_WriteMultiBytes() local
832 if(u32txLen < u32wLen) in I2C_WriteMultiBytes()
834 I2C_SET_DATA(i2c, data[u32txLen++]); /* Write Data to I2CDAT */ in I2C_WriteMultiBytes()
856 …return u32txLen; /* Return bytes length that have been… in I2C_WriteMultiBytes()
877 uint32_t u32txLen = 0u; in I2C_WriteByteOneReg() local
911 if(u32txLen < 1u) in I2C_WriteByteOneReg()
914 u32txLen++; in I2C_WriteByteOneReg()
953 uint32_t u32txLen = 0u; in I2C_WriteMultiBytesOneReg() local
987 if(u32txLen < u32wLen) in I2C_WriteMultiBytesOneReg()
989 I2C_SET_DATA(i2c, data[u32txLen++]); in I2C_WriteMultiBytesOneReg()
1007 …return u32txLen; /* Return bytes length that have been… in I2C_WriteMultiBytesOneReg()
1028 uint32_t u32txLen = 0u; in I2C_WriteByteTwoRegs() local
1067 else if((u32txLen < 1u) && (u8Addr == 0u)) in I2C_WriteByteTwoRegs()
1070 u32txLen++; in I2C_WriteByteTwoRegs()
1109 uint32_t u32txLen = 0u; in I2C_WriteMultiBytesTwoRegs() local
1148 else if((u32txLen < u32wLen) && (u8Addr == 0u)) in I2C_WriteMultiBytesTwoRegs()
1150 … I2C_SET_DATA(i2c, data[u32txLen++]); /* Write data to Register I2CDAT*/ in I2C_WriteMultiBytesTwoRegs()
1167 …return u32txLen; /* Return bytes length tha… in I2C_WriteMultiBytesTwoRegs()