-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathplatformio.ini
50 lines (46 loc) · 1.39 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
[platformio]
default_envs = lolin32-FormServer
[env:lolin32-FormServer-minimodule]
framework = arduino
platform = espressif32@>=1.11
board = lolin32
lib_ldf_mode = deep+
lib_deps = esp32_https_server@~1.0.0
build_flags = -DHTTPS_LOGLEVEL=4 -DHTTPS_REQUEST_MAX_REQUEST_LENGTH=800
src_filter = +<*> +<../examples/FormServer/>
debug_tool = minimodule
upload_protocol = minimodule
monitor_speed = 115200
upload_speed = 115200
[env:lolin32-FormServer]
framework = arduino
platform = espressif32@>=1.11
board = lolin32
lib_ldf_mode = deep+
lib_deps = esp32_https_server@~1.0.0
build_flags = -DHTTPS_LOGLEVEL=4 -DHTTPS_REQUEST_MAX_REQUEST_LENGTH=800
src_filter = +<*> +<../examples/FormServer/>
monitor_speed = 115200
upload_speed = 115200
[env:lolin32-HelloServer-minimodule]
framework = arduino
platform = espressif32@>=1.11
board = lolin32
lib_ldf_mode = deep+
lib_deps = esp32_https_server@~1.0.0
build_flags = -DHTTPS_LOGLEVEL=4 -DHTTPS_REQUEST_MAX_REQUEST_LENGTH=800
src_filter = +<*> +<../examples/HelloServer/>
debug_tool = minimodule
upload_protocol = minimodule
monitor_speed = 115200
upload_speed = 115200
[env:lolin32-HelloServer]
framework = arduino
platform = espressif32@>=1.11
board = lolin32
lib_ldf_mode = deep+
lib_deps = esp32_https_server@~1.0.0
build_flags = -DHTTPS_LOGLEVEL=4 -DHTTPS_REQUEST_MAX_REQUEST_LENGTH=800
src_filter = +<*> +<../examples/HelloServer/>
monitor_speed = 115200
upload_speed = 115200