How to avoid HAL_Init() when using a timer other than Systick
Hello guys,
First of all I want to say that I don't like and don't use HAL library. Use LL_Library instead as long as possible.
Now what brings me here is that currently I am manually porting FreeRTOS to an STM32469NI MCU. This force me to use a different time base other than the Systick. I have realized that when using another timebase source ( example TIM1), STM32Cube MX autogenerated code always includes and initialize the HAL library in main
My question: is there a workaround to get rid of the HAL library in this case and work exclusively with LL?
Any help or suggestion would be greatly appreciated