I need to read 5 bytes of data from slave through I2C DMA,
For this I need to send the starting register address of the slave to read the data that precent inside the particular 2 byte address, So I need send the 2byte address like "Lpi2c_Ip_MasterSendData(I2C_0, address, 2, false);" here I should not give the stop condition on the I2C bus right?
Then I need to receive the 5 bytes of data by calling "Lpi2c_Ip_MasterReceiveData(I2C_0, rx_data, 2, true)"; but here I can generate the start condition right?