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

Class Timer

TactilityKernel/source/concurrent/timer.c:7–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5#include <stdlib.h>
6
7struct Timer {
8 TimerHandle_t handle;
9 timer_callback_t callback;
10 void* context;
11};
12
13static void timer_callback_internal(TimerHandle_t xTimer) {
14 struct Timer* timer = (struct Timer*)pvTimerGetTimerID(xTimer);

Callers 4

SystemInfoAppClass · 0.50
DevelopmentAppClass · 0.50
PowerAppClass · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected