* @brief Basic callback function for general testing * * Simple callback that increments counter and records execution. * Used for fundamental task execution verification. */
| 177 | * Used for fundamental task execution verification. |
| 178 | */ |
| 179 | void basic_callback() { |
| 180 | callback_counter++; |
| 181 | test_output.push_back("basic_callback"); |
| 182 | std::cout << "Basic callback executed at " << millis() << "ms" << std::endl; |
| 183 | } |
| 184 | |
| 185 | /** |
| 186 | * @brief First test callback for multi-callback scenarios |