* @brief Simple callback function for Task 3 testing * * Third task callback used in execution order tests and multi-task scenarios. * Helps verify that the scheduler can handle multiple concurrent tasks * and execute them in the correct chronological order. */
| 55 | * and execute them in the correct chronological order. |
| 56 | */ |
| 57 | void task3_callback() { |
| 58 | test_output.push_back("Task3 executed"); |
| 59 | std::cout << "Task3 executed at " << millis() << "ms" << std::endl; |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * @brief Callback for testing repeating task functionality |