I need to make connection between two STM32 Nucleo 64 via I2C. I followed an example in STM32Cube\Repository\....\I2C_TwoBoards_ComDMA I configurbased on this example and connected SDA, SCL but nothing is transferred. I am cant solve the problem.
I configure the I2C as follows:hi2c1.Instance = I2C1; hi2c1.Init.ClockSpeed = 100000; hi2c1.Init.DutyCycle = I2C_DUTYCYCLE_2; hi2c1.Init.OwnAddress1 = I2C_ADDRESS; hi2c1.Init.AddressingMode = I2C_ADDRESSINGMODE_7BIT; hi2c1.Init.DualAddressMode = I2C_...