-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
51 lines (43 loc) · 1.13 KB
/
platformio.ini
File metadata and controls
51 lines (43 loc) · 1.13 KB
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
[env]
platform = espressif32@6.2.0
framework = arduino
board_build.flash_mode = qio
board_build.f_flash = 80000000L
lib_deps = m5stack/M5Unified
https://github.com/arslan437/EspFileManager.git
ESP32Async/AsyncTCP
ESPAsyncWebServer
ArduinoJson
DNSServer
lib_ldf_mode = deep
lib_compat_mode=strict
monitor_speed = 115200
monitor_filters = esp32_exception_decoder, time
upload_speed = 921600
upload_port = COM10
monitor_port = COM10
board_build.partitions = no_ota.csv
build_flags = -Wextra -Wreturn-local-addr -Werror=format -Werror=return-local-addr
-DBOARD_HAS_PSRAM -mfix-esp32-psram-cache-issue
; --------------------------------
; Choose build options
[option_release]
build_flags = -DCORE_DEBUG_LEVEL=3
-DLOG_LOCAL_LEVEL=3
-DAPP_LOG_LEVEL=3
[option_log]
build_flags = -DCORE_DEBUG_LEVEL=5
-DLOG_LOCAL_LEVEL=5
-DAPP_LOG_LEVEL=5
[option_debug]
build_flags = -DCORE_DEBUG_LEVEL=5
-DLOG_LOCAL_LEVEL=5
-DAPP_LOG_LEVEL=5
-DDEBUG
;----
[env:release]
board = esp32s3box
board_build.arduino.memory_type = qio_qspi
upload_speed = 1500000
build_type=release
build_flags=${env.build_flags} ${option_release.build_flags}