2026-02-04 2:43 AM - last edited on 2026-02-04 2:53 AM by Andrew Neil
Hello,
Normally we use HAL_GetTick() in HAL driver.
I want to use GetTick() in STM32 LL driver.
How to get and use GetTick() in STM32 LL driver?
2026-02-04 2:52 AM
You can use both HAL and LL together in a project.
via: https://www.st.com/en/embedded-software/stm32cubef4.html#documentation
Or you could just look at how HAL_GetTick() works (the source is provided), and implement that yourself ...