mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-05 23:48:31 -04:00
3c3db649d5
this will make it possible to add an abstract register simulation class that allows us to intercept device IO
13 lines
170 B
C
13 lines
170 B
C
#ifndef _AVR_INTERRUPT_H_
|
|
#define _AVR_INTERRUPT_H_
|
|
|
|
#include "io.h"
|
|
|
|
#define ISR(vector,...) void vector(void); \
|
|
void vector(void)
|
|
|
|
#define cli()
|
|
#define sei()
|
|
|
|
#endif
|