* @brief Base priority task callback - simulates normal priority work */
| 119 | * @brief Base priority task callback - simulates normal priority work |
| 120 | */ |
| 121 | void base_priority_callback() { |
| 122 | priority_callback_counter++; |
| 123 | priority_test_output.push_back("base_priority_executed"); |
| 124 | priority_execution_times[priority_execution_index++] = millis(); |
| 125 | std::cout << "Base priority task executed at " << millis() << "ms" << std::endl; |
| 126 | } |
| 127 | |
| 128 | /** |
| 129 | * @brief High priority task callback - simulates critical priority work |