Added missing include directive for stdint.h (#1005)

This fixes the compile error when we include SPI.h
This commit is contained in:
Alwin Arrasyid 2018-01-18 05:58:53 +07:00 committed by Me No Dev
parent 600f4c4130
commit 528caff7f9

View File

@ -1,6 +1,8 @@
#ifndef Pins_Arduino_h #ifndef Pins_Arduino_h
#define Pins_Arduino_h #define Pins_Arduino_h
#include <stdint.h>
#define EXTERNAL_NUM_INTERRUPTS 16 #define EXTERNAL_NUM_INTERRUPTS 16
#define NUM_DIGITAL_PINS 40 #define NUM_DIGITAL_PINS 40
#define NUM_ANALOG_INPUTS 16 #define NUM_ANALOG_INPUTS 16