NOTE:This is a read only archive of threads posted to the FreeRTOS support forum. Use these archive pages to search previous posts. New forum support threads can be started at the
FreeRTOS forums.
FreeRTOS Support Archive
The FreeRTOS support forum can be used for active support both from Amazon Web Services and the community. In return for using our software for free, we request you play fair and do your bit to help others! Sign up for an account and receive notifications of new support topics then help where you can.

This is a read only archive of threads posted to the FreeRTOS support forum. Use these archive pages to search previous posts. New forum support threads can be started at the FreeRTOS forums.
[FreeRTOS Home]
[Live FreeRTOS Forum]
[FAQ]
[Archive Top]
[February 2010 Threads]
Changing task1 to task3
Posted by
vscastro on February 2, 2010
Hi,
I have 4 tasks, and the tasks changes only when the timetick ends, but I need to change the task1 to task3 or task4 for example.
How do I do it?
Regards,
Víctor
Changing task1 to task3
Posted by
woops_ on February 2, 2010
Call taskYIELD()
Changing task1 to task3
Posted by
vscastro on February 2, 2010
Ok. But how taskYIELD’ll know that I want to call task3?
Changing task1 to task3
Posted by
vscastro on February 2, 2010
I need to change the task1 to task3 or task4 for example, before the timetick ends.
I tryied to use goto, but it’s not working.
Regards,
Víctor
Changing task1 to task3
Posted by
edwards3 on February 2, 2010
I think you have some significant misunderstandings of how the system is working and can only suggest you buy the book.
Changing task1 to task3
Posted by
monstrum-arm on February 17, 2010
You don’t “call” tasks from other tasks. The tasks are running on their own for as long as they need to. If they have nothing to do, you block it and let the scheduler find another task that needs attention and on it goes.
For communication between tasks, use semaphores or queues.
Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.