-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
77 lines (72 loc) · 1.85 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
; 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
[platformio]
default_envs = esp32cam
src_dir = src
[env]
framework = arduino
platform = espressif32
board_build.filesystem = littlefs
lib_ldf_mode = chain+
lib_deps =
Adafruit BME280 Library
ESP Async WebServer
ArduinoJson
ESP32Ping
[env:esp32cam]
board = esp32cam
board_build.mcu = esp32
board_build.f_cpu = 240000000L
; build_type = debug
build_flags =
-DSOC_SDMMC_HOST_SUPPORTED
-DBOARD_HAS_PSRAM
-DCORE_DEBUG_LEVEL=1
-mfix-esp32-psram-cache-issue
; board_build.partitions = default.csv
board_build.partitions = min_spiffs.csv
; board_build.partitions = partitions_custom.csv
upload_port = 192.168.1.162
upload_protocol = espota
; upload_protocol = esptool
; upload_port = COM5
; upload_speed = 921600
monitor_speed = 115200
; monitor_filters = esp32_exception_decoder
monitor_rts = 0
monitor_dtr = 0
[env:esp32s3cam]
board = esp32s3cam
board_build.mcu = esp32s3
build_flags =
-DARDUINO_ESP32S3_DEV
-DSOC_SDMMC_HOST_SUPPORTED
-DBOARD_HAS_PSRAM
-DESP32S3_DEV
-DCORE_DEBUG_LEVEL=5
board_build.partitions = default_16MB.csv
upload_port = 192.168.1.171
upload_protocol = espota
; upload_protocol = esptool
monitor_speed = 115200
; monitor_filters = esp32_exception_decoder
; monitor_rts = 0
; monitor_dtr = 0
[env:seeed_xiao_esp32s3]
board = seeed_xiao_esp32s3
board_build.mcu = esp32s3
build_flags =
-DSOC_SDMMC_HOST_SUPPORTED
-DCORE_DEBUG_LEVEL=5
board_build.partitions = default.csv
upload_protocol = esptool
; upload_protocol = espota
; upload_port = 192.168.1.197
monitor_speed = 115200