-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplatformio.ini
More file actions
41 lines (37 loc) · 810 Bytes
/
Copy pathplatformio.ini
File metadata and controls
41 lines (37 loc) · 810 Bytes
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
; https://docs.platformio.org/page/projectconf.html
[platformio]
default_envs = Debug
[env]
platform = espressif32
framework = arduino
monitor_speed = 115200
upload_speed = 921600
board = esp32dev
board_build.f_cpu = 240000000L
lib_deps =
https://github.com/SolderedElectronics/Inkplate-Arduino-library#10.0.0
bblanchon/ArduinoJson@^7.1.0
intrbiz/Crypto@^1.0.0
build_unflags =
-DARDUINO_ESP32
-DARDUINO_ESP32_DEV
-std=gnu++11
build_flags =
-DARDUINO_INKPLATE6V2
-DBOARD_HAS_PSRAM
-DHAS_ARDUINOJSON
-mfix-esp32-psram-cache-issue
-std=gnu++17
[env:Debug]
monitor_filters = esp32_exception_decoder
build_type = debug
build_flags =
${env.build_flags}
-DLOG_LEVEL=5
-DCORE_DEBUG_LEVEL=4
[env:Release]
build_type = release
build_flags =
${env.build_flags}
-DLOG_LEVEL=4
-DCORE_DEBUG_LEVEL=0