Tasmota/platformio.ini

130 lines
4.8 KiB
INI
Raw Normal View History

2017-01-28 15:44:00 +00:00
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter, extra scripting
; Upload options: custom port, speed and extra flags
; Library options: dependencies, extra library storages
;
; Please visit documentation for the other options and examples
; http://docs.platformio.org/en/stable/projectconf.html
[platformio]
description = Provide ESP8266 based devices with Web, MQTT and OTA firmware
2019-10-27 11:04:08 +00:00
src_dir = tasmota
build_dir = .pioenvs
workspace_dir = .pioenvs
2019-09-21 14:17:07 +01:00
build_cache_dir = .cache
2019-11-29 13:57:11 +00:00
extra_configs = platformio_tasmota_env.ini
platformio_override.ini
2017-01-28 15:44:00 +00:00
2019-11-01 10:25:08 +00:00
; *** Build/upload environment
2020-05-07 15:23:05 +01:00
default_envs =
2019-11-01 10:44:18 +00:00
; *** Uncomment by deleting ";" in the line(s) below to select version(s)
2019-11-14 16:30:03 +00:00
; tasmota
2020-05-07 15:23:05 +01:00
; tasmota-ircustom
2019-11-01 10:25:08 +00:00
; tasmota-minimal
; tasmota-lite
2019-11-01 10:25:08 +00:00
; tasmota-knx
; tasmota-sensors
; tasmota-display
; tasmota-ir
; tasmota-BG
; tasmota-BR
; tasmota-CN
; tasmota-CZ
; tasmota-DE
; tasmota-ES
; tasmota-FR
; tasmota-GR
; tasmota-HE
; tasmota-HU
; tasmota-IT
; tasmota-KO
; tasmota-NL
; tasmota-PL
; tasmota-PT
2020-03-04 10:56:35 +00:00
; tasmota-RO
2019-11-01 10:25:08 +00:00
; tasmota-RU
; tasmota-SE
; tasmota-SK
; tasmota-TR
; tasmota-TW
; tasmota-UK
2019-11-29 10:14:26 +00:00
;
2019-11-29 15:15:12 +00:00
; *** alternatively can be done in: platformio_override.ini
2019-11-29 13:59:57 +00:00
; *** See example: platformio_override_sample.ini
2019-11-29 10:14:26 +00:00
; *********************************************************************
[common]
framework = arduino
board = esp01_1m
board_build.flash_mode = dout
2020-04-07 08:28:39 +01:00
board_build.ldscript = eagle.flash.1m.ld
platform = ${core.platform}
platform_packages = ${core.platform_packages}
build_unflags = ${core.build_unflags}
build_flags = ${core.build_flags}
board_build.f_cpu = 80000000L
2020-06-02 20:46:56 +01:00
board_build.f_flash = 40000000L
monitor_speed = 115200
upload_speed = 115200
; *** Upload Serial reset method for Wemos and NodeMCU
2019-11-29 10:14:26 +00:00
upload_resetmethod = nodemcu
upload_port = COM5
2019-11-29 10:14:26 +00:00
extra_scripts = ${scripts_defaults.extra_scripts}
[scripts_defaults]
extra_scripts = pio/strip-floats.py
2019-11-16 19:18:17 +00:00
pio/name-firmware.py
2020-03-21 14:57:59 +00:00
pio/gzip-firmware.py
pio/override_copy.py
2020-04-16 18:46:26 +01:00
[esp_defaults]
; *** Fix espressif8266@1.7.0 induced undesired all warnings
build_unflags = -Wall
2020-04-16 18:46:26 +01:00
build_flags = -D_IR_ENABLE_DEFAULT_=false
-DDECODE_HASH=true -DDECODE_NEC=true -DSEND_NEC=true
-DDECODE_RC5=true -DSEND_RC5=true -DDECODE_RC6=true -DSEND_RC6=true
; new mechanism to set the IRremoteESP8266 supported protocols: none except HASH, NEC, RC5, RC6
; *********************************************************************
; *** Use custom settings from file user_config_override.h
-DUSE_CONFIG_OVERRIDE
; *********************************************************************
2020-04-16 18:46:26 +01:00
[esp82xx_defaults]
2020-04-16 18:46:26 +01:00
build_flags = ${esp_defaults.build_flags}
-Wl,-Map,firmware.map
2020-04-16 18:46:26 +01:00
-D NDEBUG
-mtarget-align
2020-04-07 08:28:39 +01:00
-DFP_IN_IROM
-DBEARSSL_SSL_BASIC
; NONOSDK22x_190703 = 2.2.2-dev(38a443e)
-DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK22x_190703
; lwIP 2 - Higher Bandwidth no Features
-DPIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH_LOW_FLASH
; VTABLES in Flash
-DVTABLES_IN_FLASH
; No exception code in firmware
-fno-exceptions
-lstdc++
2020-07-09 19:58:17 +01:00
; the following removes the 4-bytes alignment for PSTR()
-DPSTR_ALIGN=1
; restrict to minimal mime-types
-DMIMETYPE_MINIMAL
2020-04-16 18:46:26 +01:00
[irremoteesp_full]
2020-02-03 18:41:35 +00:00
build_flags = -DUSE_IR_REMOTE_FULL
2020-02-07 21:48:34 +00:00
-U_IR_ENABLE_DEFAULT_
-DDECODE_PRONTO=false -DSEND_PRONTO=false
2019-11-29 10:14:26 +00:00
[core]
2020-07-09 19:58:17 +01:00
; *** Esp8266 Arduino core 2.7.2
platform = espressif8266@2.6.0
2020-05-08 08:11:46 +01:00
platform_packages =
build_unflags = ${esp_defaults.build_unflags}
build_flags = ${esp82xx_defaults.build_flags}