Hi,
After suspending task in a specific code line (using vTaskSuspend) and resuming the task (using vTaskResume)- will the task continue from the specific suspension line?
Thanks!
Hi,
After suspending task in a specific code line (using vTaskSuspend) and resuming the task (using vTaskResume)- will the task continue from the specific suspension line?
Thanks!
will the task continue from the specific suspension line?
A super simplistic view is that the application will see it as the next instruction to vTaskSuspend() will be executed when you call vTaskResume (and the when the scheduler decides that the new unsuspended task is the next task to be run)
will the task continue from the specific suspension line?
A super simplistic view is that the application will see it as the next instruction to vTaskSuspend() will be executed when you call vTaskResume (and the when the scheduler decides that the new unsuspended task is the next task to be run)