46 lines
1.2 KiB
INI
46 lines
1.2 KiB
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:freenove_esp32_s3_wroom]
|
|
platform = espressif32
|
|
monitor_speed = 115200
|
|
monitor_dtr = 0
|
|
monitor_rts = 0
|
|
monitor_filters = direct, esp32_exception_decoder
|
|
board = freenove_esp32_s3_wroom
|
|
board_build.partitions = default_16MB.csv
|
|
board_build.flash_size = 16MB
|
|
lib_deps =
|
|
duinowitchery/hd44780@^1.3.2
|
|
board_build.arduino.memory_type = qio_opi
|
|
|
|
upload_speed = 921600
|
|
build_flags =
|
|
-DBOARD_HAS_PSRAM
|
|
-DCORE_DEBUG_LEVEL=5
|
|
-DARDUINO_USB_MODE=1
|
|
-DARDUINO_USB_CDC_ON_BOOT=1
|
|
|
|
board_upload.flash_size = 16MB
|
|
board_build.arduino.partitions = default_16MB.csv
|
|
framework = arduino
|
|
|
|
|
|
[env:freenove_esp32_s3_wroom_windows]
|
|
extends = env:freenove_esp32_s3_wroom
|
|
upload_port = COM6
|
|
monitor_port = COM6
|
|
|
|
[env:freenove_esp32_s3_wroom_linux]
|
|
extends = env:freenove_esp32_s3_wroom
|
|
upload_port = /dev/ttyACM0
|
|
monitor_port = /dev/ttyACM0 |