-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
30 lines (25 loc) · 1.1 KB
/
Copy pathplatformio.ini
File metadata and controls
30 lines (25 loc) · 1.1 KB
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
; 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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[env:esp32dev]
platform = espressif32@1.11.0 ; esp-idf v3.3 (LTS Release)
board = esp32dev
framework = espidf
board_build.partitions = partitions_tables/custom_ota_partitions.csv
build_flags =
-DCOMPONENT_EMBED_TXTFILES=otawebserver/certs/ota_cert.pem:httpsserver/certs/esp_cert.pem:httpsserver/certs/esp_key.pem:httpsserver/root.html
-DLOG_LOCAL_LEVEL=ESP_LOG_INFO
;-D PIO_FRAMEWORK_ESP_IDF_ENABLE_EXCEPTIONS
;-DLOG_LOCAL_LEVEL=ESP_LOG_VERBOSE
;board_build.f_cpu = 160000000L
;upload_speed = 9600
;monitor_port = COM3
;monitor_speed = 115200
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;