-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
31 lines (28 loc) · 994 Bytes
/
platformio.ini
File metadata and controls
31 lines (28 loc) · 994 Bytes
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
; 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
framework = arduino
board = esp32dev
board_build.partitions = custom_partitions.csv
board_upload.flash_size = 4MB
board_build.filesystem = littlefs # Keep "littlefs" for PlatformIO
upload_port = COM3
monitor_speed = 115200
monitor_port = COM3
lib_extra_dirs = ~/Documents/Arduino/libraries
lib_deps =
https://github.com/me-no-dev/ESPAsyncWebServer.git
LittleFS @ ^2.0.0
; espressif/esp_littlefs @ ^1.0.1
; Enable LittleFS in sdkconfig using build flags
build_flags =
-DCONFIG_LITTLEFS_SUPPORTED=1
-DCONFIG_LITTLEFS_FORMAT_IF_MOUNT_FAILED=y