2012-01-18 03:13 AM
How I can change clock rate for I2C bus? I need to get work wii motion plus. Code from arduino:
TWBR = ((16000000L / 400000L) - 16) / 2; // change the I2C clock rate
How I can do this in stm32?I'm use stm32f103vet6. #i2c #bus #rate #arduino #clock2012-01-18 03:41 AM
I2C_InitStructure.I2C_ClockSpeed = xxx;
in your Init function.2012-01-18 05:28 AM
Oh..thanks!
I
was not looking
to the right place