mirror of
https://github.com/oliverschmidt/contiki.git
synced 2025-08-13 13:25:24 +00:00
14 lines
222 B
C
14 lines
222 B
C
#include "embedded_types.h"
|
|
#include "isr.h"
|
|
|
|
#define reg32(x) (*(volatile uint32_t *)(x))
|
|
|
|
__attribute__ ((section (".irq")))
|
|
__attribute__ ((interrupt("IRQ")))
|
|
void irq(void)
|
|
{
|
|
if(tmr_isr != NULL) {
|
|
tmr_isr();
|
|
}
|
|
}
|