• Hello Gordon

    I have 5x i2c rotary encoders wired, each on a diffenet i2c address:

    https://www.tindie.com/products/jgilbert­/makernet-knob/

    I poll them every 250ms.

    But it is not stable. From time to time, maybe after hours, i catch the following error:

    "InternalError: InternalError: Timeout on I2C Write Transmit Mode 2"

    It's repeating endless until i force to reset/restart the espruino using my own E.enableWatchdog(); function. Memory usage is stable.

    I was not able to isolate the code. Here is a snip where i catch it.

    try {
            I2C1.writeTo(...,....);
            d = I2C1.readFrom(...., 8);
    }
    catch(x) {
            log(x); // InternalError: InternalError: Timeout on I2C Write Transmit Mode 2
    }
    

    After a soft restart of the espruino using my own watchdog reset, everything is fine again. The encoders are not reseted or restarted. No powercycle was made for the encoders.

    Is there a way to recover this i2c issue without a restart of the espruino ?

    Thanks

    Sacha

  • Is your firmware up to date? (1v99) Looking at the error, the I2C peripheral appears to be having trouble getting a result after sending the device's address - which doesn't feel like it's an issue with the internal I2C interface.

    You could try just calling I2c1.setup again, or maybe digitalWrite(...,1) for SDA and SCL pins and then setup again and see if that helps?

    Could you try using software I2C and see if that helps?

    var i2c = new I2C();
    i2c.setup({sda:..., scl:...})
    
    // ... then ...
    
    i2c.writeTo(...)
    
  • Hi Gordon
    I used 1V99. Thanks as allways for your fast answer. I will test it with software I2C and let you know.
    Last time it took 12 hours until the error happens.

    Sacha

  • Hi Gordon
    I would like to let you know that the following seems to work.
    When i catch the first Error: "InternalError: Timeout on I2C Write Transmit Mode 2"
    i call another I2c1.setup. Everything is working again.

    A test of 36 hours was successfull.

    Sacha

  • Post a reply
    • Bold
    • Italics
    • Link
    • Image
    • List
    • Quote
    • code
    • Preview
About

EspruinoWifi: InternalError: InternalError: Timeout on I2C Write Transmit Mode 2

Posted by Avatar for user85862 @user85862

Actions