FreeRTOS - Task Creation and Management
You have three tasks with priorities 1, 3, and 3. How should you assign priorities to ensure the most important task runs first and the least important runs last?
Choose the best priority assignment:
- A: Task1=1, Task2=3, Task3=3
- B: Task1=3, Task2=3, Task3=1
- C: Task1=3, Task2=1, Task3=3
- D: Task1=1, Task2=1, Task3=3
