Added #define LED_BUILTIN to all pins_arduino.h that need it. (#4520)
This commit is contained in:
parent
3274602eb0
commit
8816bb5505
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = -1;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
#define MTDO 15
|
||||
#define MTDI 12
|
||||
|
@ -14,6 +14,7 @@
|
||||
static const uint8_t LED_BUILTIN = 2;
|
||||
static const uint8_t LED_BUILTINB = 4;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
#define BUILTIN_LED2 LED_BUILTINB
|
||||
|
||||
static const uint8_t TX = 1;
|
||||
|
@ -15,6 +15,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 23;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t TX = 1;
|
||||
static const uint8_t RX = 3;
|
||||
|
@ -6,6 +6,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 2;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
static const uint8_t _VBAT = 35; // battery voltage
|
||||
|
||||
#define PIN_WIRE_SDA SDA // backward compatibility
|
||||
|
@ -6,6 +6,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 5;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
static const uint8_t _VBAT = 35; // battery voltage
|
||||
|
||||
#endif /* Pins_Arduino_h */
|
||||
|
@ -6,6 +6,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 5;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
static const uint8_t _VBAT = 35; // battery voltage
|
||||
|
||||
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 2;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t TX = 1;
|
||||
static const uint8_t RX = 3;
|
||||
|
@ -18,6 +18,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 33;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t KEY_BUILTIN = 34;
|
||||
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 5;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t TX = 1;
|
||||
static const uint8_t RX = 3;
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 5;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t KEY_BUILTIN = 0;
|
||||
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 13;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t TX = 17;
|
||||
static const uint8_t RX = 16;
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 5;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t KEY_BUILTIN = 0;
|
||||
|
||||
|
@ -17,6 +17,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 15;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t TX = 1;
|
||||
static const uint8_t RX = 3;
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 16;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t BUILTIN_KEY = 0;
|
||||
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 13;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t TX = 17;
|
||||
static const uint8_t RX = 16;
|
||||
|
@ -15,6 +15,7 @@ typedef unsigned char uint8_t;
|
||||
|
||||
static const uint8_t LED_BUILTIN = 2;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
|
||||
|
||||
|
@ -24,6 +24,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 0; // ->2812 RGB !!!
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
#define ANT_SELECT 21 // GPIO21 - WiFi external / internal antenna switch
|
||||
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 15;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t KEY_BUILTIN = 17;
|
||||
|
||||
|
@ -17,6 +17,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 25;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t KEY_BUILTIN = 0;
|
||||
|
||||
|
@ -17,6 +17,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 25;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t KEY_BUILTIN = 0;
|
||||
|
||||
|
@ -17,6 +17,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 25;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t KEY_BUILTIN = 0;
|
||||
|
||||
|
@ -17,6 +17,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 25;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t KEY_BUILTIN = 0;
|
||||
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 2;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t BUILTIN_KEY = 0;
|
||||
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 13;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t KEY_BUILTIN = 0;
|
||||
|
||||
|
@ -23,6 +23,7 @@
|
||||
/* LED_BUILTIN is kept for compatibility reason; mapped to LED2 on the LogSens V1.1 Board */
|
||||
static const uint8_t LED_BUILTIN = 33;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
/* UART0: Serial Port for Programming and Debugging on the LogSens V1.1 Board */
|
||||
static const uint8_t TX = 1;
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 4;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t RGB_R_BUILTIN = 27;
|
||||
static const uint8_t RGB_G_BUILTIN = 21;
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 5;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
|
||||
|
||||
|
@ -24,6 +24,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 0; // ->2812 RGB !!!
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
#define ANT_SELECT 16 // GPIO16 - External Antenna Switch
|
||||
|
||||
|
@ -24,6 +24,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 0; // ->2812 RGB !!!
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
#define ANT_SELECT 21 // GPIO21 - External Antenna Switch
|
||||
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 2;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t KEY_BUILTIN = 0;
|
||||
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 4;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t TX = 1;
|
||||
static const uint8_t RX = 3;
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 18;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
// IR receiver
|
||||
static const uint8_t IR = 27;
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 2;
|
||||
#define BUILTIN_LED LED_BUILTIN
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t TX = 1;
|
||||
static const uint8_t RX = 3;
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 2;
|
||||
#define BUILTIN_LED LED_BUILTIN
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t TX = 1;
|
||||
static const uint8_t RX = 3;
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 16;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t BUILTIN_KEY = 0;
|
||||
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 2;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t KEY_BUILTIN = 0;
|
||||
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 2;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t KEY_BUILTIN = 0;
|
||||
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 2;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t TX = 1;
|
||||
static const uint8_t RX = 3;
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 5;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t KEY_BUILTIN = 0;
|
||||
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 16;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t TX = 1;
|
||||
static const uint8_t RX = 3;
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 13;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t TX = 17;
|
||||
static const uint8_t RX = 16;
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 2;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t KEY_BUILTIN = 0;
|
||||
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 16;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
|
||||
|
||||
|
@ -26,6 +26,7 @@ static const uint8_t KEY_BUILTIN = 39;
|
||||
|
||||
static const uint8_t LED_BUILTIN = 14;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t TX = 1;
|
||||
static const uint8_t RX = 3;
|
||||
|
@ -26,6 +26,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 2;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t KEY_BUILTIN = 0;
|
||||
|
||||
|
@ -32,6 +32,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 22;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t KEY_BUILTIN = 0;
|
||||
|
||||
|
@ -40,6 +40,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 25 ;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t KEY_BUILTIN = 0;
|
||||
|
||||
|
@ -16,6 +16,7 @@ static const uint8_t RX = 3;
|
||||
|
||||
static const uint8_t LED_BUILTIN = 22;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t SDA = 21;
|
||||
// Despite the many diagrams from TTGO showing SCL on pin 22, due to the on-board LED
|
||||
|
@ -14,6 +14,7 @@
|
||||
// LED
|
||||
static const uint8_t LED_BUILTIN = 13;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
// UART
|
||||
static const uint8_t TX = 10;
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 2;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t TX = 1;
|
||||
static const uint8_t RX = 3;
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 25;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
|
||||
static const uint8_t KEY_BUILTIN = 0;
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 2;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t KEY_BUILTIN = 0;
|
||||
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 0; // ->2812 RGB !!!
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
#define ANT_SELECT 21 // GPIO21 - External Antenna Switch
|
||||
|
||||
|
@ -13,6 +13,7 @@
|
||||
|
||||
static const uint8_t LED_BUILTIN = 27;
|
||||
#define BUILTIN_LED LED_BUILTIN // backward compatibility
|
||||
#define LED_BUILTIN LED_BUILTIN
|
||||
|
||||
static const uint8_t TX = 1;
|
||||
static const uint8_t RX = 3;
|
||||
|
Loading…
Reference in New Issue
Block a user