forked from reeltwo/WLogicEngine32
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
35 lines (32 loc) · 768 Bytes
/
platformio.ini
File metadata and controls
35 lines (32 loc) · 768 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
[platformio]
default_envs = wlogicengine32
src_dir = .
[common]
[env:wlogicengine32]
platform = https://github.com/platformio/platform-espressif32.git#v5.2.0
board = esp32dev
framework = arduino
lib_archive = true
;override if you need a specific port
;upload_port = /dev/ttyUSB0
board_build.f_flash = 80000000L
board_build.flash_mode = qio
monitor_speed = 115200
monitor_filters =
default
esp32_exception_decoder
build_src_filter =
+<*>
lib_deps =
https://github.com/reeltwo/Reeltwo
https://github.com/adafruit/Adafruit_NeoPixel
https://github.com/FastLED/FastLED
build_type = release
build_flags =
-DCORE_DEBUG_LEVEL=3
-DBOARD_HAS_PSRAM
-mfix-esp32-psram-cache-issue
-ffunction-sections
-fdata-sections
-Wl,--gc-sections
-Os