forked from Elron_dev/elbear_arduino_bsp
23 lines
304 B
C
23 lines
304 B
C
#ifndef WiringPrivate_h
|
|
#define WiringPrivate_h
|
|
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
|
|
#include "Arduino.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"{
|
|
#endif
|
|
|
|
// available interrupts number
|
|
#define EXTERNAL_NUM_INTERRUPTS 7
|
|
|
|
typedef void (*voidFuncPtr)(void);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif
|