Hi!
I'm working on a project where I'm controlling an Analog Devices DSP (ADAU1701). communication works fine, but I discovered a potential issue when I hooked up my scope to monitor the i2c lines.
The DSP (7-bit i2c address 0x34) is a little bit too slow to pull the data line down on request, and can be seen as a positive pulse on the data line with about 700ns duration. I'm communicating at 400kHz, but these spikes still appears at 100kHz. I'm quite sure it's the DSP thats causing the spikes, because they're gone when comunicating with an external EEPROM on the same bus.
Obviously I want to get rid of this, so my first thought was to add some kind of delay (typically a microsecond). I tried to change the wait parameter that gets passed to twi_writeTo() through endTransmission(), but no luck. Does anyone knows how to get rid of this?
Thanks!