This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

How to configure FREERTOS Tasks for the following description

Hi Everyone

My requirements are as follows

1. I am running 4 tasks using free rtos in which one measures the ADC , 2nd sends the adc data over BLE and 3rd check if the button is pressed or not and 4th sends the ADC data to LORA.

2. All my 4 tasks are running perfectly so far.

But i would like to have this feature in my code.

Whenever i press the button , the controller should come out of sleep mode and run the other 2 tasks of measuring adc and sending data over BLE.

As long as button is in low state(NOT PRESSED) ,the controller should remain in sleep mode and should not do anything.

My questions are

1. How to put the nrf52840 to Sleep mode ?

2. How to achieve the above described theory using FREERTOS Tasks.

3. Can i use mutexes and sempahores for the above theory?

4. What are the available Sleep modes on nrf52840.?

5. What are the functions to call to put nrf52840 to sleep modes?

Parents Reply Children
  • ohk, but to work with freeRTOS what can be done?

  • SDK path\examples\ble_peripheral\ble_app_hrs

    This example shows how to use timers to conifgure timely task , go through the main code , you will easily understand how its done

  • ok ,Thanks. Will go through this example and will get back to you soon.

  • Hello, Rajat. I tried with timers using ble_app_hrs and my both tasks ble_advertising and saadc reading are working properly. But the concern working with timely basis is I am confused on what values to be set for different tasks. My scenario is when a device is powered on first it will wait maximum for 15 sec for the sensor data to read and then start advertising for 5 sec and then transmit data for 2 sec and go to sleep for rest (4 min 63 sec ) and again do the same thing.

  • yoou can define different timer intervals something like this given below
    #define T1_INTERVAL APP_TIMER_TICKS (15000)

    You can pass this value to your timer start function
    app_timer_start (t1_timer_id, T1_INTERVAL, NULL);

    Depending on the mode you have configured for your timer(repeated or siingle shot)
    The timer will expire after 15 seconds and do its task.

    This  timer can be reconfigured inside the timer handler itself , but you will have to stop and start the timer again with new time and there is no limit on app timer , untill you run out of memory.

    #define APP_ADV_DURATION                18000  
    This parameter comfgures the advertising duration , for 5 seconds you can do your research or read some documentation , its pretty easy.

    app_timer_stop (t1_timer_id);

    app_timer_start (t1_timer_id, APP_TIMER_TICKS (new_sleep_time), NULL);

    This is how you can restart your timer with new time duration(convert 4min 63 sec to miliseconds)

    Thanks

Related