This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS/LAUNCHXL-CC1352R1: how can i set Interval time delay between I2C byte?

Part Number: LAUNCHXL-CC1352R1

Tool/software: Code Composer Studio

how can i set

Interval time delay between I2C byte to 10ms

in i2c code?

/*I2C*/
                     I2C_init();
                     I2C_Params_init(&i2cParams);
                     i2cParams.transferMode = I2C_MODE_BLOCKING;
                     i2cParams.bitRate = I2C_100kHz;//I2C_100kHz;
                     i2cHandle = I2C_open(Board_I2C0, &i2cParams);
                     if (i2cHandle == NULL) {
                           while (1);
                        }