Exemplo n.º 1
0
static void _periph_timer_callback(int chan)
{
    (void)chan;
    _timer_callback();
}
Exemplo n.º 2
0
static void _periph_timer_callback(void *arg, int chan)
{
    (void)arg;
    (void)chan;
    _timer_callback();
}