-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
37 lines (31 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
; 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:seeed_xiao_esp32s3]
platform = https://github.com/platformio/platform-espressif32.git ;Fech lastest support for ESP32
;platform = espressif32
board = seeed_xiao_esp32s3
framework = espidf
build_type = debug ;build in debug mode instead of release mode
build_flags =
-DCONFIG_SPIRAM_CACHE_WORKAROUND ; https://docs.platformio.org/en/latest/platforms/espressif32.html#external-ram-psram
-I include
-I vendor/BME68x_SensorAPI
build_src_filter =
+<*>
+<../vendor/BME68x_SensorAPI/*>
-<../vendor/BME68x_SensorAPI/examples/*>
;upload_port = COM11
upload_protocol = esp-builtin
upload_speed = 2000000 ;ESP32S3 USB-Serial Converter maximum 2000000bps
;debug_port = COM11
debug_tool = esp-builtin
debug_init_break = break setup
;monitor_port = COM11
monitor_speed = 115200