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

Function base_priority_callback

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

* @brief Base priority task callback - simulates normal priority work */

Source from the content-addressed store, hash-verified

119 * @brief Base priority task callback - simulates normal priority work
120 */
121void 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

Callers

nothing calls this directly

Calls 1

millisFunction · 0.85

Tested by

no test coverage detected