cancel
Showing results for 
Search instead for 
Did you mean: 

HeartRate FreeRTOS Default task

ABN
Associate III

Hi all,

I'm referring to BLE_HeartRateFreeRTOS example project. As per my understanding, controller wakes up to advertise based on the Adv Interval. This can be fast(80ms-100ms) or low power advertising(1s-2.5s).

In this project there is a default task, which gets initialized and is run on boot up. This default task is not running after subsequent wakeup of controller. May I know, how can I make this default task to run??

Also is there any FreeRTOS, STOP2 mode and BLE Beacon based example project available?

5 REPLIES 5
ABN
Associate III

Hi @STTwo-32 , @_Joe_ 

 

Can you guys help me with this?

ABN
Associate III

Hi @Ouadi can you help me out with this??

STTwo-32
ST Employee

Hello @ABN 

First, could you explain more in details what are you exactly locking for. Is it a specific task that is called only once by the scheduler or what exactly? and what is the expected behavior?

Best Regards.

STTwo-32 

To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.

Hi @STTwo-32 

Default task is created in the MX_FREERTOS_Init funciton

defaultTaskHandle = osThreadNew(StartDefaultTask, NULL, &defaultTask_attributes);

 The default task looks like this.

void StartDefaultTask(void *argument)
{
  /* USER CODE BEGIN StartDefaultTask */


  /* Infinite loop */
  for(;;)
  {
    osThreadFlagsWait(1,osFlagsWaitAll,osWaitForever);
  }
  /* USER CODE END StartDefaultTask */
}


When the controller wakes up from sleep, I want to run the default task to perform some sensor measurements. Right now, when the controller is waking up the default task is not hit

I'm not an expert of RTOS use cases. But I may suggest you follow the implementation of the Heart rate bare metal example and how it has been migrated to the RTOS implementation (using the attached document). This way, you will be able to identifier how to go to a task to perform your task.

Best Regards.

STTwo-32

 

To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.