31 lines
923 B
INI
31 lines
923 B
INI
; 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:esp32-s3-devkitc-1]
|
|
platform = espressif32 @ 6.5.0
|
|
board = esp32-s3-devkitc-1
|
|
framework = arduino
|
|
platform_packages =
|
|
toolchain-riscv32-esp @ 8.4.0+2021r2-patch5
|
|
; framework-arduinoespressif32 @ 2.0.6+sha.099b432
|
|
board_upload.flash_size=4MB
|
|
board_upload.psram_size =2MB
|
|
lib_deps =
|
|
paulstoffregen/OneWire@^2.3.7
|
|
|
|
build_flags = -DARDUINO_USB_CDC_ON_BOOT=1 ; Enable USB CDC
|
|
-DCORE_DEBUG_LEVEL=1 ; Set debug level
|
|
|
|
build.arduino.memory_type = qspi_qspi
|
|
|
|
board_build.partitions = partitions.csv
|
|
; board_build.filesystem = spiffs
|
|
|