Hi Team,
we are using LPC55s69JBD100.
Recently, we are trying to interface TOF sensor with LPC55s69 controller.
During sensor initialization, controller has to write 8000 bytes of hex data to sensor.
i.e ex: status |= WrMulti(&(p_dev->platform),0,(uint8_t*)&VL53L8CX_FIRMWARE[0],0x8000);
I need a clarification that , LPC55s69- I2C supports how many byte-long hex transfers?
Based on this capability , I will divide the data into chunks and transfer.
Thanks & regards,
Deep_Bang
Hi @Deeps_bang
The max i2c data length is 256byte.
Hi Hang,