Skip to main content
Zek_De
Senior
May 30, 2018
Question

How can I manage freertos timer

  • May 30, 2018
  • 3 replies
  • 719 views
Posted on May 30, 2018 at 16:59

Hello friends ,I am new with FreeRtos and I am trying to manage a software timer but I couldnt start it.Do you have any simple example How to do it

    This topic has been closed for replies.

    3 replies

    After Forever
    Senior III
    May 30, 2018
    Posted on May 30, 2018 at 17:18

    Here is a nice tutorial by Erich Styger:

    https://mcuoneclipse.com/2018/05/27/tutorial-understanding-and-using-freertos-software-timers/

    Zek_De
    Zek_DeAuthor
    Senior
    May 30, 2018
    Posted on May 30, 2018 at 17:28

    I see ,it is perfect article but I am using CubeMX so lots of thing was already done for me ,but again it didnt start.This is why I need a simple example 

    T J
    Senior III
    May 30, 2018
    Posted on May 30, 2018 at 17:44

    void start_Timer15(void) {

        HAL_TIMEx_OCN_Start(&htim15, TIM_CHANNEL_1);

        HAL_TIM_Base_Start(&htim15);

    }