avr-fw-modules/core/src/systick_set_handler.c

13 lines
187 B
C
Executable File

#include <sys/systick.h>
#include <sys/atomic.h>
extern systick_handler _systick_handler;
void systick_set_handler(systick_handler handler)
{
ATOMIC
_systick_handler = handler;
};