forked from chrisjoyce911/esp32FOTA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
49 lines (40 loc) · 932 Bytes
/
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
; CanAirIO Sensorlib
;
; Full guide and details: https://github.com/kike-canaries/canairio_sensorlib
[platformio]
src_dir = ./tests/
lib_dir = ./
[env]
framework = arduino
upload_speed = 1500000
monitor_speed = 115200
monitor_filters = time
build_flags =
-D CORE_DEBUG_LEVEL=0
lib_deps =
bblanchon/ArduinoJson @ ^6
[esp32_common]
platform = espressif32
board = esp32dev
framework = ${env.framework}
upload_speed = ${env.upload_speed}
monitor_speed = ${env.monitor_speed}
lib_deps = ${env.lib_deps}
build_flags =
${env.build_flags}
[env:esp32_http]
extends = esp32_common
src_filter = -<*> +<test_http>
[env:esp32_http_debug]
extends = esp32_common
build_flags =
-D CORE_DEBUG_LEVEL=3
src_filter = -<*> +<test_http>
[env:esp32_https]
extends = esp32_common
src_filter = -<*> +<test_https>
[env:esp32_https_debug]
extends = esp32_common
build_flags =
-D CORE_DEBUG_LEVEL=3
src_filter = -<*> +<test_https>