System Tick for FreeRTOS

Hi, I’m trying make the transition from a uC/OS II based STM32 to FreeRTOS.  I remembered that I must configure the the tick source (a timer, usually) and tick interrupt service routine for uc/OS II.  Is there a similar thing I must do for FreeRTOS or is it already taken care of?  I’m using one of the demo projects targeted at STM32 Cortex M3 cores. Thanks!

System Tick for FreeRTOS

It is done for you. The Cortex M3 ports all use the core SysTick timer. It is started by the kernel.

System Tick for FreeRTOS

That’s good to know.  Thanks!