-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplatformio.ini
53 lines (46 loc) · 1.73 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
; 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
[platformio]
default_envs = native
[env]
extra_scripts =
scripts/run_lvgl_kconfig.py
scripts/run_lvgl_esp32_drivers_kconfig.py
scripts/run_lvgl_native_drivers_kconfig.py
[env:esp32]
platform = espressif32@
board = esp32doit-devkit-v1
framework = espidf
build_flags =
-I include/esp32
-DLV_LVGL_H_INCLUDE_SIMPLE
-DLV_CONF_INCLUDE_SIMPLE
-DLV_CONF_PATH=lv_conf.h
monitor_filters = esp32_exception_decoder
monitor_speed = 115200
custom_lvgl_kconfig_save_settings = include/esp32/lv_conf.config
custom_lvgl_kconfig_output_header = include/esp32/lv_conf.h
custom_lvgl_kconfig_include_headers =
lvgl_esp32_drivers.h
custom_lvgl_esp32_drivers_kconfig_save_settings = include/esp32/lvgl_esp32_drivers.config
custom_lvgl_esp32_drivers_kconfig_output_header = include/esp32/lvgl_esp32_drivers.h
[env:native]
platform = native
build_flags =
-I include/native
-DLV_LVGL_H_INCLUDE_SIMPLE
-DLV_CONF_INCLUDE_SIMPLE
-DLV_CONF_PATH=lv_conf.h
custom_lvgl_kconfig_save_settings = include/native/lv_conf.config
custom_lvgl_kconfig_output_header = include/native/lv_conf.h
custom_lvgl_kconfig_include_headers =
lvgl_native_drivers.h
custom_lvgl_native_drivers_kconfig_save_settings = include/native/lvgl_native_drivers.config
custom_lvgl_native_drivers_kconfig_output_header = include/native/lvgl_native_drivers.h