Tool/software: Code Composer Studio
sdk version: processor_sdk_rtos_am57xx_5_03_00_07
I use the i2c5 in the dsp with rtos, I successfully to transfer data with the 100K bit rate.
But I failed when I set the bit rate to 400K,1M or 3.4M.
When I set the bit rate to 400K,1M and 3.4M, The sda and scl lines didn't work anymore.
The following is my setting:
I2C_Params_init(&i2c_params); i2c_params.bitRate = I2C_3P4Mhz; handle = I2C_open(i2c_dev,&i2c_params);
I only modified the i2c_params.bitRate to I2C_3P4Mhz.
Is there another setting should I configure?
If there are some documents can I reference to set the bit rate to 3.4M, please give me the link.
Thanks