Could I ask a question about I2C inferface?
In Vincross I2C MIND SDK, read one I2C device use [func Value(addr byte, reg byte, length int) (data []byte, err error)]
But the hardware I2C package sequence not my expect.
I want the I2C package sequence is follow:

I2C Write Adress ==> Command 1 ==> Command 2 ==> I2C Read Adress ==> SensorBackData
BUT
BUT
BUT
MIND SDK provide Value(addr byte, reg byte, length int) make the I2C package sequence is follow:

I2C Write Adress ==> Command 1 ==> Command 2 ==> I2C Read Adress ==> I2C Read Reg ==> SensorBackData
So Could you tell me what MIND SDK api function can support my requirement?