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

13 lines
199 B
C
Executable File

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