-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplatformio.ini
50 lines (46 loc) · 1.14 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 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 = seeed_xiao_esp32s3
[env]
platform = [email protected]
framework = arduino
lib_deps =
nickjgniklu/ESP_TF@^2.0.1
https://github.com/geeksville/Micro-RTSP.git
monitor_filters = esp32_exception_decoder, log2file, JpegFilter
[env:seeed_xiao_esp32s3]
board = seeed_xiao_esp32s3
monitor_speed = 115200
build_flags =
-std=gnu++17
-DCORE_DEBUG_LEVEL=5
-DESP_NN
-DBOARD_HAS_PSRAM
-DCONFIG_NN_OPTIMIZED
-DARCH_ESP32_S3
-DCAMERA_MODEL_SEEED_XIAO_ESP32S3
build_unflags =
-std=gnu++11
[env:esp32cam]
board = esp32cam
build_flags =
-DLED_BUILTIN=16
-DBOARD_HAS_PSRAM
-mfix-esp32-psram-cache-issue
-std=gnu++17
-DCORE_DEBUG_LEVEL=5
-DESP_NN
-DCONFIG_IDF_TARGET_ESP32
-DCONFIG_NN_OPTIMIZED
-DCAMERA_MODEL_AI_THINKER
build_unflags =
-std=gnu++11
monitor_speed = 115200