Question
Use of the phrase "in this example" in the comments of the generated code
There are several places in the code generated by STM32CubeMX where the comments contain the phrase "in this example". For example we have the following in stm32l4xx_hal_msp.c.
/**
* @brief I2C MSP Initialization
* This function configures the hardware resources used in this example
* @param hi2c: I2C handle pointer
* @retval None
*/
void HAL_I2C_MspInit(I2C_HandleTypeDef* hi2c)It was my understanding that the generated code is suitable for production use and not merely as an example.
