Lines Matching refs:u32txLen
739 uint32_t u32txLen = 0u; in I2C_WriteMultiBytes() local
753 if(u32txLen < u32wLen) in I2C_WriteMultiBytes()
755 I2C_SET_DATA(i2c, data[u32txLen++]); /* Write Data to I2CDAT */ in I2C_WriteMultiBytes()
777 …return u32txLen; /* Return bytes length that have been… in I2C_WriteMultiBytes()
798 uint32_t u32txLen = 0u; in I2C_WriteByteOneReg() local
819 if(u32txLen < 1u) in I2C_WriteByteOneReg()
822 u32txLen++; in I2C_WriteByteOneReg()
861 uint32_t u32txLen = 0u; in I2C_WriteMultiBytesOneReg() local
882 if(u32txLen < u32wLen) in I2C_WriteMultiBytesOneReg()
884 I2C_SET_DATA(i2c, data[u32txLen++]); in I2C_WriteMultiBytesOneReg()
902 …return u32txLen; /* Return bytes length that have been… in I2C_WriteMultiBytesOneReg()
923 uint32_t u32txLen = 0u; in I2C_WriteByteTwoRegs() local
949 else if((u32txLen < 1u) && (u8Addr == 0u)) in I2C_WriteByteTwoRegs()
952 u32txLen++; in I2C_WriteByteTwoRegs()
991 uint32_t u32txLen = 0u; in I2C_WriteMultiBytesTwoRegs() local
1017 else if((u32txLen < u32wLen) && (u8Addr == 0u)) in I2C_WriteMultiBytesTwoRegs()
1019 … I2C_SET_DATA(i2c, data[u32txLen++]); /* Write data to Register I2CDAT*/ in I2C_WriteMultiBytesTwoRegs()
1036 …return u32txLen; /* Return bytes length tha… in I2C_WriteMultiBytesTwoRegs()