-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
116 lines (110 loc) · 3.01 KB
/
platformio.ini
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[common]
firmware_version = 834074
[env:ESP32_3248S035C]
platform = espressif32
board = esp32dev
framework = arduino
board_build.partitions = huge_app.csv
monitor_speed = 115200
build_flags =
-Ofast
#-Wall
#-D CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_VERBOSE
# LVGL settings
-D LV_CONF_PATH=${platformio.workspace_dir}/../src/lv_conf.h
# Smartdisplay settings
-D START_PIN=123456
-D BB_FGCOLOR=0x33FF00
-D BB_BGCOLOR=0x000066
-D BB_ABOUT=0
-D BB_NAME=\"EREIGNISHORIZONT.XYZ\"
-D BB_TFT_INTENSITY=1023
-D TFT_PANEL_ORDER_BGR
-D TFT_ORIENTATION_PORTRAIT
#-D TFT_ORIENTATION_LANDSCAPE
#-D TFT_ORIENTATION_PORTRAIT_INV
#-D TFT_ORIENTATION_LANDSCAPE_INV
-D FIRMWARE_VERSION=${common.firmware_version}
#-D ESP32_2432S028R
#-D ESP32_3248S035R
-D ESP32_3248S035C
lib_deps =
rzeldent/esp32_smartdisplay@^1.0.6
lvgl/lvgl@^8.3.9
bblanchon/ArduinoJson@^6.21.3
https://github.com/micro-bitcoin/uBitcoin.git
arkhipenko/TaskScheduler@^3.7.0
[env:ESP32_3248S035R]
platform = espressif32
board = esp32dev
framework = arduino
board_build.partitions = huge_app.csv
monitor_speed = 115200
build_flags =
-Ofast
#-Wall
#-D CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_VERBOSE
# LVGL settings
-D LV_CONF_PATH=${platformio.workspace_dir}/../src/lv_conf.h
# Smartdisplay settings
-D START_PIN=123456
-D BB_FGCOLOR=0x33FF00
-D BB_BGCOLOR=0x000066
-D BB_ABOUT=0
-D BB_NAME=\"EREIGNISHORIZONT.XYZ\"
-D BB_TFT_INTENSITY=1023
-D TFT_PANEL_ORDER_BGR
-D TFT_ORIENTATION_PORTRAIT
#-D TFT_ORIENTATION_LANDSCAPE
#-D TFT_ORIENTATION_PORTRAIT_INV
#-D TFT_ORIENTATION_LANDSCAPE_INV
-D FIRMWARE_VERSION=${common.firmware_version}
#-D ESP32_2432S028R
-D ESP32_3248S035R
#-D ESP32_3248S035C
lib_deps =
rzeldent/esp32_smartdisplay@^1.0.6
lvgl/lvgl@^8.3.9
bblanchon/ArduinoJson@^6.21.3
https://github.com/micro-bitcoin/uBitcoin.git
arkhipenko/TaskScheduler@^3.7.0
; ### BOARD INFO ###
; Free GPIO
; GPIO 21
; GPIO 22
; GPIO 35 (input only)
; Used GPIO 1..18, , ,21,22, .. ,33,34,35,36,
; Build in RGB LED (Ground switching)
; #define LED_PIN_R 4
; #define LED_PIN_G 16
; #define LED_PIN_B 17
; PWM channels for RGB
; #define LED_PWM_CHANNEL_R 13
; #define LED_PWM_CHANNEL_G 14
; #define LED_PWM_CHANNEL_B 15
; Photo resistor
; #define CDS_PIN 34 // ANALOG_PIN_0
; Display
; #define ST7796_SPI_SCLK 14
; #define ST7796_SPI_MOSI 13
; #define ST7796_SPI_MISO 12
; #define ST7796_PIN_CS 15
; #define ST7796_PIN_DC 2
; #define ST7796_PIN_BL 27
; #define XPT2046_PIN_INT 36
; #define XPT2046_PIN_CS 33
; SD Card
; GPIO 5 : TF CS
; GPIO 18 : TF CLK
; GPIO 19 : MCU MISC
; GPIO 23 : MCU MOSI
; ### BOARD INFO END ###*/