First addition of ESP320 support (#19)

* First addition of ESP320 support

* Updated maximum data size.
This commit is contained in:
Electronic Sweet Peas
2016-10-17 16:53:13 +02:00
committed by Me No Dev
parent 4865ed0d13
commit bd1dcb82ca
2 changed files with 73 additions and 0 deletions

View File

@ -0,0 +1,33 @@
#ifndef Pins_Arduino_h
#define Pins_Arduino_h
#define digitalPinToPort(pin) (0)
#define digitalPinToBitMask(pin) (1UL << (pin))
#define digitalPinToTimer(pin) (0)
#define portOutputRegister(port)
#define portInputRegister(port)
#define portModeRegister(port)
#define NOT_A_PIN -1
#define NOT_A_PORT -1
#define NOT_AN_INTERRUPT -1
#define NOT_ON_TIMER 0
#define EXTERNAL_NUM_INTERRUPTS 11
#define NUM_DIGITAL_PINS 12
#define NUM_ANALOG_INPUTS 5
#define analogInputToDigitalPin(p)
#define digitalPinToInterrupt(p)
#define digitalPinHasPWM(p)
static const uint8_t SDA = 2;
static const uint8_t SCL = 14;
static const uint8_t SS = 15;
static const uint8_t MOSI = 13;
static const uint8_t MISO = 12;
static const uint8_t SCK = 14;
#endif /* Pins_Arduino_h */