1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-13 13:01:55 +03:00

fix board common variant inclusion for deprecated BUILTIN_LED (#4366)

This commit is contained in:
david gauchard
2018-02-17 02:40:25 +01:00
committed by Develo
parent 5328a8b91e
commit d0f220fb54
18 changed files with 39 additions and 40 deletions

View File

@ -26,8 +26,6 @@
#ifndef Pins_Arduino_h
#define Pins_Arduino_h
#include "../generic/common.h"
#define PIN_WIRE_SDA (2)
#define PIN_WIRE_SCL (0)
@ -47,13 +45,8 @@ static const uint8_t P11 = 17;
static const uint8_t SDA = PIN_WIRE_SDA;
static const uint8_t SCL = PIN_WIRE_SCL;
static const uint8_t SS = 15;
static const uint8_t MOSI = 13;
static const uint8_t MISO = 12;
static const uint8_t SCK = 14;
#define LED_BUILTIN 5
static const uint8_t A0 = 17;
#include "../generic/common.h"
#endif /* Pins_Arduino_h */