Missing LL calls during SystemClock_Config in generated main.c
Hi,
I found the same issue as in.
https://community.st.com/t5/stm32cubemx-mcus/found-a-bug-with-the-latest-rev-of-stm32cubemx-rev-5-3-0/td-p/279154
(thank you @MSilv for reporting this btw).
Since a STM32CubeMx update and STM32F4 Cube update, the generated main.c is missing two lines in the end of the generated void SystemClock_Config(void) function :
LL_Init1msTick(100000000);
LL_SYSTICK_SetClkSource(LL_SYSTICK_CLKSOURCE_HCLK);
The update was quite a big leap :
CubeMx: from 5.2.1 to 6.16.1
STM32Cube FW_F4: from 1.24.1 to 1.28.3
Without those lines the code is stuck.
Adding them back in the user-code following SystemClock_Config(void) mitigates the issue, but it looks like those lines shouldn't have been deleted in the first place.
