mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-13 11:28:30 -04:00
13 lines
181 B
C
13 lines
181 B
C
|
#ifndef _AVR_INTERRUPT_H_
|
||
|
#define _AVR_INTERRUPT_H_
|
||
|
|
||
|
#include "io.h"
|
||
|
|
||
|
#define ISR(vector,...) extern "C" void vector(void); \
|
||
|
void vector(void)
|
||
|
|
||
|
#define cli()
|
||
|
#define sei()
|
||
|
|
||
|
#endif
|