STM32CubeIDE (Mac). Problem after upgrading from version 1.15.0 to 1.15.1
I use the STM32CubeIDE program on Mac (Version 1.15.0)
The MCU is a STM32H743VIT and its configuration is done from the *.ioc file.
I use ADC3 with an Oversampling of 128.
Its configuration is done by entering 128 for the “Oversampling Ratio” line, and the ADC3 initialization code in the MX_ADC_Init() procedure includes the line:
hadc3.Init.Oversampling.Ratio = 128;
I've just updated to 1.15.1 (with migration), keeping the same files (*.h, *.c, *.ioc).
When I open the *.ioc file, the ADC3 settings contain an error for the Oversampling ration: 128 is in red and I have to put “Oversampling ratio 128x”.
The initialization code generated becomes:
hadc3.Init.Oversampling.Ratio = ADC3_OVERSAMPLING_RATIO_128;
No problem a priori, but the code is now compiled with an error:
error: 'ADC3_OVERSAMPLING_RATIO_128' undeclared!
