Has anybody got the TX2 operating as a slave on I2C bus?
I see in the documentation that it is possible.
I’ve got it working ok as master:
int i2cwrite(int writeValue)
{
int toReturn = i2c_smbus_write_byte(kI2CFileDescriptor, writeValue);
if (toReturn < 0)
{
printf(" ************ Write error ************* \n") ;
toReturn = -1 ;
}
return toReturn ;
}
… and can send bounding box coordinates etc to an MCU, but what if the MCU, such as the Infineon TC275, will only work as master?
Thanks!