MCPcopy Create free account
hub / github.com/arkhipenko/TaskScheduler / medium_priority_callback

Function medium_priority_callback

tests/test-scheduler-priority.cpp:168–173  ·  view source on GitHub ↗

* @brief Medium priority task callback - simulates intermediate priority work */

Source from the content-addressed store, hash-verified

166 * @brief Medium priority task callback - simulates intermediate priority work
167 */
168void medium_priority_callback() {
169 priority_callback_counter++;
170 priority_test_output.push_back("medium_priority_executed");
171 priority_execution_times[priority_execution_index++] = millis();
172 std::cout << "Medium priority task executed at " << millis() << "ms" << std::endl;
173}
174
175/**
176 * @brief Time-critical sensor callback - simulates gyroscope/accelerometer reading

Callers

nothing calls this directly

Calls 1

millisFunction · 0.85

Tested by

no test coverage detected