Hi Everyone,
I want to configure i2c1 of NVIDIA Jetson TX2 NX as slave.I tried by enabling the following configs in tegradef_config file
CONFIG_I2C_TEGRA_SLAVE=y
CONFIG_I2C_SLAVE_EEPROM=y
and added the following node in the device tree file
i2c@c240000 {
status=“okay”;
compatible = “nvidia,tegrat186-i2c-slave”;
eeprom@64 {
reg = <0x64>;
compatible=“slave-24c02”;
status = “okay”;
};
};
But after flashing with the above configuration,I am not able to see the device with 0x64 address while tried to read the i2c bus.What all changes are required in the device tree file to configure i2c1 as slave? Kindly guide me
Thanks in advance