7 years, 2 months ago.

MAX32630FTHR I2C - ACK Status

A useful I2C function is a quick "ping" to see if a particular device is attached to the I2C bus.

char I2C_Quick_Write(char address)
{
       // Device present should respond with 0x01, otherwise 0x00
       char RESPONSE = 0x00;
    
       i2c1.start();
       RESPONSE = i2c1.write(address);                         // Echo ACK/NACK Status
       i2c1.stop();
    
       return RESPONSE;    
}

When I use the above function with the MAX32630FTHR, I always receive a "1" regardless of whether the device is attached. Does the MAX32630FTHR propagate the I2C ACK/NACK status like other mbed platforms?

Question relating to:

Maxim's microcontrollers provide low-power, efficient, and secure solutions for challenging embedded applications.

I guess this is a non-issue or has been solved elsewhere in the community??

posted by Bill Smith 28 Feb 2017
Be the first to answer this question.