mirror of https://github.com/arendst/Tasmota.git
63 lines
2.7 KiB
INI
63 lines
2.7 KiB
INI
[env:tasmota-rangeextender]
|
|
build_flags = ${env.build_flags}
|
|
-D FIRMWARE_RANGE_EXTENDER
|
|
-D PIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH
|
|
-D USE_WIFI_RANGE_EXTENDER
|
|
-D USE_WIFI_RANGE_EXTENDER_NAPT
|
|
|
|
[env:tasmota32-rangeextender]
|
|
extends = env:tasmota32_base
|
|
build_flags = ${env:tasmota32_base.build_flags}
|
|
-D FIRMWARE_TASMOTA32
|
|
-D USE_WIFI_RANGE_EXTENDER
|
|
-D USE_WIFI_RANGE_EXTENDER_NAPT
|
|
|
|
[env:tasmota32s3]
|
|
extends = env:tasmota32_base
|
|
board = esp32s3
|
|
build_flags = ${env:tasmota32_base.build_flags} -D FIRMWARE_TASMOTA32
|
|
; example for custom file upload in Tasmota Filesystem
|
|
; custom_files_upload = ${env:tasmota32_base.custom_files_upload}
|
|
; tasmota/berry/modules/Partition_wizard.tapp
|
|
|
|
; *** Debug version used for PlatformIO Home Project Inspection
|
|
[env:tasmota-debug]
|
|
build_type = debug
|
|
build_unflags = ${env.build_unflags}
|
|
build_flags = ${env.build_flags}
|
|
; -Wstack-usage=300
|
|
|
|
[env:tasmota32-debug]
|
|
extends = env:tasmota32_base
|
|
build_type = debug
|
|
build_unflags = ${env:tasmota32_base.build_unflags}
|
|
build_flags = ${env:tasmota32_base.build_flags}
|
|
monitor_filters = esp32_exception_decoder
|
|
; -Wstack-usage=300
|
|
|
|
; *** JTAG Debug version, needs esp-prog or FT2232H or FT232H
|
|
; *** Install howto for Windows https://community.platformio.org/t/esp32-pio-unified-debugger/4541/20
|
|
[env:tasmota32-ocd]
|
|
build_type = debug
|
|
extends = env:tasmota32_base
|
|
debug_tool = esp-prog
|
|
upload_protocol = esp-prog
|
|
debug_init_break = tbreak setup
|
|
build_unflags = ${env:tasmota32_base.build_unflags}
|
|
build_flags = ${env:tasmota32_base.build_flags}
|
|
monitor_filters = esp32_exception_decoder
|
|
|
|
; *** JTAG Debug version, needs esp-prog or FT2232H or FT232H
|
|
[env:tasmota32solo1-ocd]
|
|
build_type = debug
|
|
extends = env:tasmota32solo1
|
|
platform = ${core32solo1.platform}
|
|
platform_packages = ${core32solo1.platform_packages}
|
|
board = esp32_solo1_4M
|
|
debug_tool = esp-prog
|
|
upload_protocol = esp-prog
|
|
debug_init_break = tbreak setup
|
|
build_unflags = ${core32solo1.build_unflags}
|
|
build_flags = ${core32solo1.build_flags}
|
|
monitor_filters = esp32_exception_decoder
|