You have published an application note AN3281 to implement the I2C bus.Where can we download the example programs described in the note? Thank you for your answers
My issue is the following :I use the nucleo_8s207k8 evaluation kit.I am trying to enable I2C bus as master with these functionsvoid clock_setup(void) {
CLK_DeInit();
CLK_HSECmd(DISABLE);
CLK_LSICmd(DISABLE);
CLK_HSICmd(ENABLE);
...