Question
STM32F74XX I2C Fast-Mode Plus Configuration
According to the the STM32F74XXX Reference Manual, the STM32F74XX supports Fast-mode Plus I2C (up to 1MHz).
I have configured my application's I2C to Fast-Mode Plus through STM32CubeIDE tools but I get the following error during build time: undefined reference to `HAL_I2CEx_EnableFastModePlus' that points to the generated line of code in main.c :
/** I2C Enable Fast Mode Plus
*/
HAL_I2CEx_EnableFastModePlus(I2C_FASTMODEPLUS_I2C1);
I do not get that error if the I2C is configured to 400KHz through the same method.
What is that I am missing?
