forked from Elron_dev/elbear_arduino_bsp
23 lines
326 B
C
23 lines
326 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 EXTERNAL_INTERRUPTS_QTY
|
|
|
|
typedef void (*voidFuncPtr)(void);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif
|