Missing stm32f7xx_ll_adc.h when using STM32Cube FW_F7 1.16.1
Greetings!
I have just migrated my project from Cube firmware F7 1.16.0 to 1.16.1 . Now the compiler complains about a missing "stm32f7xx_ll_adc.h". This is correct since the file does not exist.
If I create a new clean project which uses the ADC peripheral using HAL libraries I get the same result.
Comparing the my sources reveals, that the HAL headers of the ADC now includes the file, which wasn't the case before migration:
--- a/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_adc.h
+++ b/Drivers/STM32F7xx_HAL_Driver/Inc/stm32f7xx_hal_adc.h
@@ -29,7 +29,7 @@
#include "stm32f7xx_hal_def.h"
/* Include low level driver */
+#include "stm32f7xx_ll_adc.h"The file gets created when I switch the ADC peripheral to LL but gets removed again when switching back to HAL.
I'm using STM32CubeIDE 1.6.1 on Ubuntu 20.04 . Am I missing something?
Best regards,
Felix
