Correct arduino_esp32_v2 ini flags

This commit is contained in:
fvanroie 2023-01-26 14:15:05 +01:00
parent eca33d0d84
commit 434563b5eb
2 changed files with 8 additions and 9 deletions

View File

@ -115,16 +115,9 @@ monitor_port = COM9 ; Change to the correct port
;upload_protocol = espota ; Use ArduinoOTA after flashing over serial
upload_flags = --port=3232 ; --auth=haspadmin ; OTA password
[env:ttgo-lilygo-pi_ili9481]
monitor_port = COM9 ; Change to the correct port
;upload_port = ${env:ttgo_esp32_poe-ili9341.monitor_port}
;upload_port = 192.168.4.5 ; IP of the ESP
;upload_protocol = espota ; Use ArduinoOTA after flashing over serial
upload_flags = --port=3232 ; --auth=haspadmin ; OTA password
;region -- Custom Environment configuration example -----------------
[env:my_custom_build]
extends = esp32
extends = arduino_esp32_v2
board = nodemcu-32s
upload_port = COM12 ; To change the port, use platform_override.ini

View File

@ -152,7 +152,13 @@ monitor_filters = esp32_exception_decoder
extra_scripts =
${esp32.extra_scripts}
lib_deps =
lib_ignore = LittleFS_esp32 ; Not needed for Arduino v2
${env.lib_deps}
${esp32.lib_deps}
lib_ignore =
${env.lib_ignore}
${esp32.lib_ignore}
LittleFS_esp32 ; Not needed for Arduino v2
[esp32_4mb_v2]
extends = esp32, arduino_esp32_v2