-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
54 lines (42 loc) · 1.92 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
[platformio]
default_envs = ESP_ESP32_Development
[env]
monitor_speed = 115200
lib_extra_dirs = lib, lib-external, include, core/lib, core/include
[common]
platform = espressif32
framework = arduino
board = esp32dev
build_flags = -D FIRMWARE_LANGUAGE=0
board_build.f_cpu = 240000000L
board_build.f_flash = 80000000L
board_build.flash_mode = qio
lib_ldf_mode = chain+
lib_ignore =
lib_deps = Streaming
https://github.com/lorol/LITTLEFS.git
#https://github.com/tschaban/ESP32_ITEADLIB_Arduino_Nextion.git
https://github.com/tschaban/Adafruit_ADS1115.git
https://github.com/tschaban/ArduinoJson.git#5.x
https://github.com/PaulStoffregen/OneWire.git
https://github.com/tschaban/Arduino-Temperature-Control-Library.git#afe/1.0
[esp32]
build_flags = ${common.build_flags}
-DBOARD_HAS_PSRAM
-mfix-esp32-psram-cache-issue
[production]
lib_ignore = Streaming
build_flags =
[development]
lib_ignore =
build_flags = -D DEBUG
[env:ESP_ESP32_Development]
platform = ${common.platform}
framework = ${common.framework}
board = ${common.board}
build_flags = ${esp32.build_flags} ${development.build_flags}
lib_ignore = ${common.lib_ignore} ${development.lib_ignore}
lib_deps = ${common.lib_deps}
board_build.f_cpu = ${common.board_build.f_cpu}
board_build.f_flash = ${common.board_build.f_flash}
board_build.flash_mode = ${common.board_build.flash_mode}