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]
|
2019-10-27 11:04:08 +00:00
|
|
|
src_dir = tasmota
|
2019-07-13 14:29:15 +01:00
|
|
|
build_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
|
|
|
|
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
|
2019-11-01 10:25:08 +00:00
|
|
|
; tasmota-ircustom ; alternative to 'tasmota' with full IR protocols activated, you will need to disable some features to keep code not too big
|
|
|
|
; tasmota-minimal
|
2019-12-17 14:13:47 +00:00
|
|
|
; 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
|
|
|
; *********************************************************************
|
|
|
|
|
2017-06-03 21:13:35 +01:00
|
|
|
|
2019-11-01 10:03:10 +00:00
|
|
|
[common]
|
|
|
|
framework = arduino
|
|
|
|
board = esp01_1m
|
|
|
|
board_build.flash_mode = dout
|
2020-03-31 22:04:17 +01:00
|
|
|
; board_build.ldscript = eagle.flash.1m.ld
|
|
|
|
board_build.ldscript = ${PROJECTSRC_DIR}/ld/eagle.flash.1m.ld_FP_IN_IROM
|
2019-11-01 10:03:10 +00:00
|
|
|
|
|
|
|
platform = ${core_active.platform}
|
2020-02-12 18:54:14 +00:00
|
|
|
platform_packages = ${core_active.platform_packages}
|
2019-11-01 10:03:10 +00:00
|
|
|
build_flags = ${core_active.build_flags}
|
|
|
|
|
|
|
|
; *********************************************************************
|
2019-11-01 10:48:11 +00:00
|
|
|
; *** Uncomment, by deleting ";" in line below, to use custom settings from file user_config_override.h
|
2019-11-01 10:03:10 +00:00
|
|
|
; -DUSE_CONFIG_OVERRIDE
|
2019-11-29 10:14:26 +00:00
|
|
|
;
|
2019-11-29 13:59:57 +00:00
|
|
|
; *** alternatively can be done in: platformio_override.ini
|
|
|
|
; *** See example: platformio_override_sample.ini
|
2019-11-01 10:03:10 +00:00
|
|
|
; *********************************************************************
|
|
|
|
|
|
|
|
; *** Fix espressif8266@1.7.0 induced undesired all warnings
|
|
|
|
build_unflags = -Wall
|
|
|
|
|
|
|
|
board_build.f_cpu = 80000000L
|
|
|
|
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
|
2019-11-01 10:03:10 +00:00
|
|
|
upload_port = COM5
|
2019-11-29 10:14:26 +00:00
|
|
|
extra_scripts = ${scripts_defaults.extra_scripts}
|
|
|
|
|
|
|
|
[scripts_defaults]
|
2019-11-01 10:03:10 +00:00
|
|
|
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
|
2019-11-01 10:03:10 +00:00
|
|
|
|
2018-12-17 14:29:21 +00:00
|
|
|
[esp82xx_defaults]
|
|
|
|
build_flags = -D NDEBUG
|
|
|
|
-mtarget-align
|
|
|
|
-Wl,-Map,firmware.map
|
2020-02-03 18:41:35 +00:00
|
|
|
; new mechanism to set the IRremoteESP8266 supported protocols: none except HASH, NEC, RC5, RC6
|
|
|
|
-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
|
|
|
|
|
|
|
|
[irremoteesp8266_full]
|
|
|
|
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-10 16:42:21 +00:00
|
|
|
|
2019-11-29 10:14:26 +00:00
|
|
|
[core_active]
|
2020-03-12 08:14:30 +00:00
|
|
|
platform = ${tasmota_core_stage.platform}
|
|
|
|
platform_packages = ${tasmota_core_stage.platform_packages}
|
|
|
|
build_flags = ${tasmota_core_stage.build_flags}
|
2019-11-29 10:14:26 +00:00
|
|
|
|
2020-03-12 08:14:30 +00:00
|
|
|
[tasmota_core_stage]
|
|
|
|
; *** Esp8266 core for Arduino version stable beta
|
2020-03-25 13:05:31 +00:00
|
|
|
platform = espressif8266@2.4.0
|
2020-03-12 08:14:30 +00:00
|
|
|
platform_packages = framework-arduinoespressif8266 @ https://github.com/esp8266/Arduino.git#372a3ec297dfe8501bed1ec4552244695b5e8ced
|
2018-12-17 14:29:21 +00:00
|
|
|
build_flags = ${esp82xx_defaults.build_flags}
|
2019-05-11 13:32:35 +01:00
|
|
|
-DBEARSSL_SSL_BASIC
|
2019-11-29 10:14:26 +00:00
|
|
|
; NONOSDK22x_190703 = 2.2.2-dev(38a443e)
|
2019-11-21 14:34:53 +00:00
|
|
|
-DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK22x_190703
|
2019-11-29 10:14:26 +00:00
|
|
|
; lwIP 2 - Higher Bandwidth no Features
|
2019-11-28 15:09:42 +00:00
|
|
|
-DPIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH_LOW_FLASH
|
2019-11-29 10:14:26 +00:00
|
|
|
; VTABLES in Flash
|
2019-11-28 15:09:42 +00:00
|
|
|
-DVTABLES_IN_FLASH
|
|
|
|
; No exception code in firmware
|
|
|
|
-fno-exceptions
|
|
|
|
-lstdc++
|