forked from espressif/arduino-esp32
- Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpins_arduino.h
56 lines (45 loc) · 1.3 KB
/
pins_arduino.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#ifndefPins_Arduino_h
#definePins_Arduino_h
#include<stdint.h>
#include"soc/soc_caps.h"
staticconstuint8_tLED_BUILTIN=15;
#defineBUILTIN_LED LED_BUILTIN // backward compatibility
#defineLED_BUILTIN LED_BUILTIN // allow testing #ifdef LED_BUILTIN
staticconstuint8_tTX=16;
staticconstuint8_tRX=17;
staticconstuint8_tSDA=19;
staticconstuint8_tSCL=20;
staticconstuint8_tSS=5;
staticconstuint8_tMOSI=22;
staticconstuint8_tMISO=21;
staticconstuint8_tSCK=23;
staticconstuint8_tA1=2;
staticconstuint8_tA2=3;
staticconstuint8_tA3=4;
staticconstuint8_tA4=5;
staticconstuint8_tD2=8;
staticconstuint8_tD3=14;
staticconstuint8_tD6=1;
staticconstuint8_tD7=18;
staticconstuint8_tD9=9;
staticconstuint8_tD11=7;
staticconstuint8_tD12=6;
staticconstuint8_tD13=15;
#defineGDI_DISPLAY_FPC_INTERFACE
#ifdefGDI_DISPLAY_FPC_INTERFACE
#defineGDI_BLK D13
#defineGDI_SPI_SCLK SCK
#defineGDI_SPI_MOSI MOSI
#defineGDI_SPI_MISO MISO
#defineGDI_DC D2
#defineGDI_RES D3
#defineGDI_CS D6 //LCD_CS
#defineGDI_SDCS D7
#defineGDI_FCS -1
#defineGDI_TCS D12
#defineGDI_SCL SCL
#defineGDI_SDA SDA
#defineGDI_INT D11
#defineGDI_BUSY_TE -1
#endif
#endif/* Pins_Arduino_h */