예제 #1
0
static void _periph_timer_callback(int chan)
{
    (void)chan;
    _timer_callback();
}
예제 #2
0
파일: xtimer_core.c 프로젝트: Cr0s/RIOT
static void _periph_timer_callback(void *arg, int chan)
{
    (void)arg;
    (void)chan;
    _timer_callback();
}