MCPcopy Create free account
hub / github.com/TactilityProject/Tactility / timer_is_running

Function timer_is_running

TactilityKernel/source/concurrent/timer.c:78–82  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

76}
77
78bool timer_is_running(struct Timer* timer) {
79 check(xPortInIsrContext() == pdFALSE);
80 check(timer != NULL);
81 return xTimerIsTimerActive(timer->handle) != pdFALSE;
82}
83
84TickType_t timer_get_expiry_time(struct Timer* timer) {
85 check(xPortInIsrContext() == pdFALSE);

Callers 1

TimerTest.cppFile · 0.85

Calls 1

checkFunction · 0.50

Tested by

no test coverage detected