Lines Matching refs:u32txLen
773 uint32_t u32txLen = 0u, u32TimeOutCount = 0u; in I2C_WriteMultiBytes() local
799 if(u32txLen < u32wLen) in I2C_WriteMultiBytes()
801 I2C_SET_DATA(i2c, data[u32txLen++]); /* Write Data to I2CDAT */ in I2C_WriteMultiBytes()
823 …return u32txLen; /* Return bytes length that have been… in I2C_WriteMultiBytes()
846 uint32_t u32txLen = 0u, u32TimeOutCount = 0u; in I2C_WriteByteOneReg() local
879 if(u32txLen < 1u) in I2C_WriteByteOneReg()
882 u32txLen++; in I2C_WriteByteOneReg()
923 uint32_t u32txLen = 0u, u32TimeOutCount = 0u; in I2C_WriteMultiBytesOneReg() local
956 if(u32txLen < u32wLen) in I2C_WriteMultiBytesOneReg()
958 I2C_SET_DATA(i2c, data[u32txLen++]); in I2C_WriteMultiBytesOneReg()
976 …return u32txLen; /* Return bytes length that have been… in I2C_WriteMultiBytesOneReg()
999 uint32_t u32txLen = 0u, u32TimeOutCount = 0U; in I2C_WriteByteTwoRegs() local
1037 else if((u32txLen < 1u) && (u8Addr == 0u)) in I2C_WriteByteTwoRegs()
1040 u32txLen++; in I2C_WriteByteTwoRegs()
1081 uint32_t u32txLen = 0u, u32TimeOutCount = 0U; in I2C_WriteMultiBytesTwoRegs() local
1119 else if((u32txLen < u32wLen) && (u8Addr == 0u)) in I2C_WriteMultiBytesTwoRegs()
1121 … I2C_SET_DATA(i2c, data[u32txLen++]); /* Write data to Register I2CDAT*/ in I2C_WriteMultiBytesTwoRegs()
1138 …return u32txLen; /* Return bytes length tha… in I2C_WriteMultiBytesTwoRegs()