m
m
Line 4: Line 4:
 
==Intro==
 
==Intro==
 
The vTaskSuspend() and vTaskResume() functions are used to move and remove a task to and from suspended state. You can check [[RTOS Basics : TASK]] tutorial to know more about this.
 
The vTaskSuspend() and vTaskResume() functions are used to move and remove a task to and from suspended state. You can check [[RTOS Basics : TASK]] tutorial to know more about this.
 +
In this tutorial we will also see how these functions affects scheduling.
  
 
==Code==
 
==Code==

Revision as of 12:44, 17 April 2015

Amruta (talk) 12:33, 17 April 2015 (IST)


Intro

The vTaskSuspend() and vTaskResume() functions are used to move and remove a task to and from suspended state. You can check RTOS Basics : TASK tutorial to know more about this. In this tutorial we will also see how these functions affects scheduling.

Code