-
Notifications
You must be signed in to change notification settings - Fork 2
/
platformio.ini
86 lines (77 loc) · 3.08 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
; 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]
build_flags = -DCORE_DEBUG_LEVEL=3 -DPDFB_PERF_LOGS -DPDFB_PERF_LOG_INTERVAL=1200 -DGP_NO_OTA -DGP_NO_DNS -DGP_NO_MDNS -D_IR_ENABLE_DEFAULT_=false -DDECODE_NEC=true -DDECODE_RC5=true -DDECODE_RC6=true -DDECODE_SONY=true
[env]
platform = [email protected]
framework = arduino
build_src_filter = +<*> -<.git/> -<.svn/> -<music/>
board_build.partitions = partitions.csv
board_build.filesystem = littlefs
lib_deps =
bblanchon/ArduinoJson@^7.0.4
gyverlibs/GyverPortal@^3.6.6
h2zero/NimBLE-Arduino@^1.4.2
fortyseveneffects/MIDI Library@^5.0.2
crankyoldgit/IRremoteESP8266@^2.8.6
robtillaart/AM232X@^0.5.1
extra_scripts =
pre:helper/env-extra.py
pre:helper/aquestalk-detect.py
[env:music-pomf]
board = esp32dev
build_type = debug
build_src_filter = +<music/**/*.cpp>
build_flags = -Wl,-allow-multiple-definition
lib_deps =
extra_scripts =
post:helper/build-all-music.py
[env:PLASMA]
board = esp32dev
build_type = debug
build_flags = -DDEVICE_PLASMA_CLOCK -DFVU_FLAVOR=\"PLASMA\" ${common.build_flags} -DBOARD_HAS_PSRAM -mfix-esp32-psram-cache-issue
upload_speed = 921600
monitor_speed = 115200
monitor_filters = esp32_exception_decoder
[env:OLED]
board = esp32dev
build_type = debug
build_flags = -DDEVICE_MINIPISOS -DFVU_FLAVOR=\"OLED\" ${common.build_flags} -DBOARD_HAS_PSRAM -mfix-esp32-psram-cache-issue -DCONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY
upload_speed = 921600
monitor_speed = 115200
monitor_filters = esp32_exception_decoder
[env:NORITAKE_GU112]
board = esp32dev
build_type = debug
build_flags = -DDEVICE_MINIPISOS_VFD -DFVU_FLAVOR=\"NORITAKE_GU112\" ${common.build_flags} -DBOARD_HAS_PSRAM -mfix-esp32-psram-cache-issue -DCONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY
upload_speed = 921600
monitor_speed = 115200
monitor_filters = esp32_exception_decoder
[env:NORITAKE_GU140]
board = esp32dev
build_type = debug
build_flags = -DDEVICE_MINIPISOS_VFD_WIDE -DFVU_FLAVOR=\"NORITAKE_GU140\" ${common.build_flags} -DBOARD_HAS_PSRAM -mfix-esp32-psram-cache-issue -DCONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY
upload_speed = 921600
monitor_speed = 115200
monitor_filters = esp32_exception_decoder
[env:NORITAKE_321_192]
board = esp32dev
build_type = debug
build_flags = -DDEVICE_LONGPISOS -DFVU_FLAVOR=\"NORITAKE_321_192\" ${common.build_flags} -DBOARD_HAS_PSRAM -mfix-esp32-psram-cache-issue -DCONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY
upload_speed = 921600
monitor_speed = 115200
monitor_filters = esp32_exception_decoder
[env:AKI_K875]
board = esp32dev
build_type = debug
build_flags = -DDEVICE_LEPISOS -DFVU_FLAVOR=\"AKI_K875\" ${common.build_flags} -DBOARD_HAS_PSRAM -mfix-esp32-psram-cache-issue -DCONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY
upload_speed = 921600
monitor_speed = 115200
monitor_filters = esp32_exception_decoder