Other Parts Discussed in Thread: TMP100
Hello
I found following code for I2C communication in eval board .
// PB6-7 are used for I2C to the TMP100 and the EM connector.
//
ROM_GPIOPinConfigure(GPIO_PB6_I2C6SCL);
ROM_GPIOPinConfigure(GPIO_PB7_I2C6SDA);
ROM_GPIOPinTypeI2CSCL(GPIO_PORTB_BASE, GPIO_PIN_6);
ROM_GPIOPinTypeI2C(GPIO_PORTB_BASE, GPIO_PIN_7);
But I couldnt understand whether pins (B6,B7) is configured in I2C MASTER or SLAVE?
Suppose these pins are MASTER then How can we configure these pins in slave?
Thanks
Manish