how to reduce the delay of i2c

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

how to reduce the delay of i2c

跳至解决方案
1,699 次查看
jeffgu
Contributor I

Hello,

I'm using the i2c to read data from device. Presently it is OK to read the data correctly. See the attached waveform:

yellow line: i2c SCL

green line:  i2c SDA

This figure indicates a 10bytes data read, SCL frq=300KHz

In thewaveform, there are 2 long delay during i2c access. The first delay happens between address and first data read, the second delay happens between i2c Nack and i2c Stop. Is there any way to shorten or eliminate these 2 delays?

good_i2c.bmp

For a easy understanding, the source code for i2c reading is like:

    i2c_Start();

    i2c_write_byte(W9002_ADDRESS<<1|I2C_READ);
    i2c_Wait();

    i2c_EnterRxMode();
    i2c_read_byte(dst[0]);   //Dummy read
    i2c_Wait();

    for(i=0;i<8;i++){
        i2c_read_byte(dst[i]);
        i2c_Wait();      
    }

    i2c_DisableAck();

    i2c_read_byte(dst[i++]);
i2c_Wait();

    i2c_Stop();
    i2c_read_byte(dst[i]);

标签 (1)
标记 (3)
0 项奖励
1 解答
1,042 次查看
Jorge_Gonzalez
NXP Employee
NXP Employee

Hello jeff gu:

Those delays can actually be caused by your I2C slave holding the clock line. Can you try with a different slave? Or even without a slave?


Regards!,
Jorge Gonzalez

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

在原帖中查看解决方案

0 项奖励
3 回复数
1,042 次查看
jeffgu
Contributor I

Anyone who can help me?

0 项奖励
1,043 次查看
Jorge_Gonzalez
NXP Employee
NXP Employee

Hello jeff gu:

Those delays can actually be caused by your I2C slave holding the clock line. Can you try with a different slave? Or even without a slave?


Regards!,
Jorge Gonzalez

-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------

0 项奖励
1,042 次查看
jeffgu
Contributor I

Jorge,

Thank you so much for your answer. I tried it without i2c slave, the result is exactly as you said. The delay should be caused by the slave device.

I would like to put the empty slave waveform here for a easy understanding to everyone.

i2c_withoutDigitizer.bmp

0 项奖励