Tasmota/platformio_override_sample.ini

237 lines
10 KiB
INI
Raw Normal View History

2019-11-29 14:22:28 +00:00
; *** Example PlatformIO Project Configuration Override File ***
; *** Changes done here override settings in platformio.ini ***
;
; *****************************************************************
; *** to activate rename this file to platformio_override.ini ***
; *****************************************************************
2019-11-29 13:59:03 +00:00
;
; Please visit documentation for the options and examples
; http://docs.platformio.org/en/stable/projectconf.html
[platformio]
; For best Gitpod performance remove the ";" in the next line. Needed Platformio files are cached and installed at first run
;core_dir = .platformio
2020-09-05 21:52:11 +01:00
extra_configs = platformio_tasmota_cenv.ini
2019-11-29 13:59:03 +00:00
; *** Build/upload environment
2019-11-29 14:22:28 +00:00
default_envs =
2019-11-29 13:59:03 +00:00
; *** Uncomment the line(s) below to select version(s)
tasmota
; tasmota-debug
; tasmota-ircustom
2019-11-29 13:59:03 +00:00
; tasmota-minimal
; tasmota-lite
2019-11-29 13:59:03 +00:00
; tasmota-knx
; tasmota-sensors
; tasmota-display
2020-07-28 08:25:48 +01:00
; tasmota-zbbridge
2019-11-29 13:59:03 +00:00
; tasmota-ir
2020-04-13 18:53:33 +01:00
; tasmota32
; tasmota32-webcam
2020-04-13 18:53:33 +01:00
; tasmota32-minimal
; tasmota32-lite
; tasmota32-knx
; tasmota32-sensors
; tasmota32-display
; tasmota32-ir
; tasmota32-ircustom
2019-11-29 13:59:03 +00:00
[common]
platform_packages = ${core.platform_packages}
build_unflags = ${core.build_unflags}
build_flags = ${core.build_flags}
2019-11-29 13:59:03 +00:00
; *** Optional Debug messages
; -DDEBUG_TASMOTA_CORE
; -DDEBUG_TASMOTA_DRIVER
; -DDEBUG_TASMOTA_SENSOR
; set CPU frequency to 80MHz (default) or 160MHz
;board_build.f_cpu = 160000000L
2020-06-02 17:02:36 +01:00
; set Flash chip frequency to 40MHz (default), 20MHz, 26Mhz, 80Mhz
;board_build.f_flash = 20000000L
;board_build.f_flash = 26000000L
;board_build.f_flash = 80000000L
2019-11-29 13:59:03 +00:00
; *** Upload Serial reset method for Wemos and NodeMCU
upload_port = COM5
extra_scripts = ${scripts_defaults.extra_scripts}
2020-04-16 18:44:13 +01:00
; pio/obj-dump.py
2019-11-29 13:59:03 +00:00
; *** Upload file to OTA server using SCP
;upload_port = user@host:/path
2019-11-29 14:22:28 +00:00
;extra_scripts = ${scripts_defaults.extra_scripts}
; pio/strip-floats.py
; pio/sftp-uploader.py
2019-11-29 13:59:03 +00:00
; *** Upload file to OTA server in folder api/arduino using HTTP
;upload_port = domus1:80/api/upload-arduino.php
;extra_scripts = ${scripts_defaults.extra_scripts}
; pio/strip-floats.py
; pio/http-uploader.py
2019-11-29 13:59:03 +00:00
2020-11-02 07:09:23 +00:00
lib_ldf_mode = ${library.lib_ldf_mode}
shared_libdeps_dir = ${library.shared_libdeps_dir}
2020-10-25 15:27:34 +00:00
[core]
Core 2.7.0 (#36) * Prep for core 2.7 * Test release core 2.6.3... if it appears in build * Release zip as source for core? * Release Core 2.7.0 removed comment behind definition since it generates on some platforms errors * Update platformio_override_sample.ini * Update (#34) * Fix pin handling part 1 * Change pin handling part 2 * Change pin handling part 3 * Change pin handling part 4/4 * Fix pin handling part 4/4 * Change pin handling part 5 * Change pin handling part 6 * Update xsns_02_analog.ino * Only advance to next palette color when fade is down * Rework DGR channel update * Update Changelog and Release notes * Switch from GPIO array to Pin array * Change ESP32 pin allocation part 1 * Change pin array names Change pin array names to block unwanted use of direct access * Fix ESP32 settings size Fix ESP32 settings size as regression from yesterday * Change ESP32 pin allocation part 2 * Fix http message time * Create CI_github.yml * CI on Push and Pull * Change ESP32 pin allocation part 3 * Fix ESP32 pin allocation part 3 regression * Rename .travis.yml to .travis.yml.off * Update CI_github.yml * Update README.md * Update PULL_REQUEST_TEMPLATE.md * Fix CI badge Co-authored-by: Theo Arends <11044339+arendst@users.noreply.github.com> Co-authored-by: kugelkopf123 <45996965+kugelkopf123@users.noreply.github.com> Co-authored-by: Paul C Diem <PCDiem@FoxValley.net> Co-authored-by: device111 <48546979+device111@users.noreply.github.com> Co-authored-by: Theo Arends <11044339+arendst@users.noreply.github.com> Co-authored-by: kugelkopf123 <45996965+kugelkopf123@users.noreply.github.com> Co-authored-by: Paul C Diem <PCDiem@FoxValley.net> Co-authored-by: device111 <48546979+device111@users.noreply.github.com>
2020-05-01 13:29:52 +01:00
; Activate only (one set) if you want to override the standard core defined in platformio.ini !!!
Core 2.7.0 (#36) * Prep for core 2.7 * Test release core 2.6.3... if it appears in build * Release zip as source for core? * Release Core 2.7.0 removed comment behind definition since it generates on some platforms errors * Update platformio_override_sample.ini * Update (#34) * Fix pin handling part 1 * Change pin handling part 2 * Change pin handling part 3 * Change pin handling part 4/4 * Fix pin handling part 4/4 * Change pin handling part 5 * Change pin handling part 6 * Update xsns_02_analog.ino * Only advance to next palette color when fade is down * Rework DGR channel update * Update Changelog and Release notes * Switch from GPIO array to Pin array * Change ESP32 pin allocation part 1 * Change pin array names Change pin array names to block unwanted use of direct access * Fix ESP32 settings size Fix ESP32 settings size as regression from yesterday * Change ESP32 pin allocation part 2 * Fix http message time * Create CI_github.yml * CI on Push and Pull * Change ESP32 pin allocation part 3 * Fix ESP32 pin allocation part 3 regression * Rename .travis.yml to .travis.yml.off * Update CI_github.yml * Update README.md * Update PULL_REQUEST_TEMPLATE.md * Fix CI badge Co-authored-by: Theo Arends <11044339+arendst@users.noreply.github.com> Co-authored-by: kugelkopf123 <45996965+kugelkopf123@users.noreply.github.com> Co-authored-by: Paul C Diem <PCDiem@FoxValley.net> Co-authored-by: device111 <48546979+device111@users.noreply.github.com> Co-authored-by: Theo Arends <11044339+arendst@users.noreply.github.com> Co-authored-by: kugelkopf123 <45996965+kugelkopf123@users.noreply.github.com> Co-authored-by: Paul C Diem <PCDiem@FoxValley.net> Co-authored-by: device111 <48546979+device111@users.noreply.github.com>
2020-05-01 13:29:52 +01:00
;platform_packages = ${tasmota_stage.platform_packages}
;build_unflags = ${tasmota_stage.build_unflags}
Core 2.7.0 (#36) * Prep for core 2.7 * Test release core 2.6.3... if it appears in build * Release zip as source for core? * Release Core 2.7.0 removed comment behind definition since it generates on some platforms errors * Update platformio_override_sample.ini * Update (#34) * Fix pin handling part 1 * Change pin handling part 2 * Change pin handling part 3 * Change pin handling part 4/4 * Fix pin handling part 4/4 * Change pin handling part 5 * Change pin handling part 6 * Update xsns_02_analog.ino * Only advance to next palette color when fade is down * Rework DGR channel update * Update Changelog and Release notes * Switch from GPIO array to Pin array * Change ESP32 pin allocation part 1 * Change pin array names Change pin array names to block unwanted use of direct access * Fix ESP32 settings size Fix ESP32 settings size as regression from yesterday * Change ESP32 pin allocation part 2 * Fix http message time * Create CI_github.yml * CI on Push and Pull * Change ESP32 pin allocation part 3 * Fix ESP32 pin allocation part 3 regression * Rename .travis.yml to .travis.yml.off * Update CI_github.yml * Update README.md * Update PULL_REQUEST_TEMPLATE.md * Fix CI badge Co-authored-by: Theo Arends <11044339+arendst@users.noreply.github.com> Co-authored-by: kugelkopf123 <45996965+kugelkopf123@users.noreply.github.com> Co-authored-by: Paul C Diem <PCDiem@FoxValley.net> Co-authored-by: device111 <48546979+device111@users.noreply.github.com> Co-authored-by: Theo Arends <11044339+arendst@users.noreply.github.com> Co-authored-by: kugelkopf123 <45996965+kugelkopf123@users.noreply.github.com> Co-authored-by: Paul C Diem <PCDiem@FoxValley.net> Co-authored-by: device111 <48546979+device111@users.noreply.github.com>
2020-05-01 13:29:52 +01:00
;build_flags = ${tasmota_stage.build_flags}
;platform_packages = ${core_stage.platform_packages}
;build_unflags = ${core_stage.build_unflags}
;build_flags = ${core_stage.build_flags}
2019-11-29 13:59:03 +00:00
Core 2.7.0 (#36) * Prep for core 2.7 * Test release core 2.6.3... if it appears in build * Release zip as source for core? * Release Core 2.7.0 removed comment behind definition since it generates on some platforms errors * Update platformio_override_sample.ini * Update (#34) * Fix pin handling part 1 * Change pin handling part 2 * Change pin handling part 3 * Change pin handling part 4/4 * Fix pin handling part 4/4 * Change pin handling part 5 * Change pin handling part 6 * Update xsns_02_analog.ino * Only advance to next palette color when fade is down * Rework DGR channel update * Update Changelog and Release notes * Switch from GPIO array to Pin array * Change ESP32 pin allocation part 1 * Change pin array names Change pin array names to block unwanted use of direct access * Fix ESP32 settings size Fix ESP32 settings size as regression from yesterday * Change ESP32 pin allocation part 2 * Fix http message time * Create CI_github.yml * CI on Push and Pull * Change ESP32 pin allocation part 3 * Fix ESP32 pin allocation part 3 regression * Rename .travis.yml to .travis.yml.off * Update CI_github.yml * Update README.md * Update PULL_REQUEST_TEMPLATE.md * Fix CI badge Co-authored-by: Theo Arends <11044339+arendst@users.noreply.github.com> Co-authored-by: kugelkopf123 <45996965+kugelkopf123@users.noreply.github.com> Co-authored-by: Paul C Diem <PCDiem@FoxValley.net> Co-authored-by: device111 <48546979+device111@users.noreply.github.com> Co-authored-by: Theo Arends <11044339+arendst@users.noreply.github.com> Co-authored-by: kugelkopf123 <45996965+kugelkopf123@users.noreply.github.com> Co-authored-by: Paul C Diem <PCDiem@FoxValley.net> Co-authored-by: device111 <48546979+device111@users.noreply.github.com>
2020-05-01 13:29:52 +01:00
[tasmota_stage]
; *** Esp8266 core for Arduino version Tasmota stage (PR7231 and Backport PR7514)
platform_packages = framework-arduinoespressif8266@https://github.com/Jason2866/Arduino.git#2.7.4.4
2020-06-19 19:25:02 +01:00
build_unflags = ${esp_defaults.build_unflags}
build_flags = ${esp82xx_defaults.build_flags}
2020-06-19 19:25:02 +01:00
2020-05-08 07:49:18 +01:00
; *********** Alternative Options, enable only if you know exactly what you do ********
; NONOSDK221
; -DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK221
; NONOSDK22x_190313
; -DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK22x_190313
; NONOSDK22x_191024 = 2.2.1+111-dev(5ab15d1)
; -DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK22x_191024
; NONOSDK22x_191105 = 2.2.1+113-dev(bb83b9b)
; -DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK22x_191105
; NONOSDK22x_191122 = 2.2.1+119-dev(a58da79)
; -DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK22x_191122
; NONOSDK3V0 (known issues)
; -DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK3
; lwIP 1.4
; -DPIO_FRAMEWORK_ARDUINO_LWIP_HIGHER_BANDWIDTH
; lwIP 2 - Low Memory
; -DPIO_FRAMEWORK_ARDUINO_LWIP2_LOW_MEMORY
; lwIP 2 - Higher Bandwidth
; -DPIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH
; lwIP 2 - Higher Bandwidth Low Memory no Features
; -DPIO_FRAMEWORK_ARDUINO_LWIP2_LOW_MEMORY_LOW_FLASH
; VTABLES in Heap
; -DVTABLES_IN_DRAM
; VTABLES in IRAM
; -DVTABLES_IN_IRAM
2020-05-08 07:49:18 +01:00
; Exception code in firmware /needs much space!
; -fexceptions
; -lstdc++-exc
2019-11-29 13:59:03 +00:00
[core_stage]
; *** Esp8266 core version. Tasmota stage or Arduino stage version. Built with GCC 10.1 toolchain
platform_packages = framework-arduinoespressif8266 @ https://github.com/Jason2866/platform-espressif8266/releases/download/2.9.1/framework-arduinoespressif8266-3.20901.0.tar.gz
;framework-arduinoespressif8266 @ https://github.com/esp8266/Arduino.git
toolchain-xtensa @ ~2.100100.0
2020-06-19 19:25:02 +01:00
build_unflags = ${esp_defaults.build_unflags}
-Wswitch-unreachable
build_flags = ${esp82xx_defaults.build_flags}
2020-07-15 10:10:10 +01:00
-Wno-switch-unreachable
2020-05-08 07:49:18 +01:00
; *********** Alternative Options, enable only if you know exactly what you do ********
2019-11-29 13:59:03 +00:00
; NONOSDK221
; -DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK221
; NONOSDK22x_190313
; -DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK22x_190313
; NONOSDK22x_191024 = 2.2.1+111-dev(5ab15d1)
2019-11-29 13:59:03 +00:00
; -DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK22x_191024
; NONOSDK22x_191105 = 2.2.1+113-dev(bb83b9b)
2019-11-29 14:22:28 +00:00
; -DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK22x_191105
; NONOSDK22x_191122 = 2.2.1+119-dev(a58da79)
; -DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK22x_191122
2019-11-29 13:59:03 +00:00
; NONOSDK3V0 (known issues)
; -DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK3
; lwIP 2 - Low Memory
; -DPIO_FRAMEWORK_ARDUINO_LWIP2_LOW_MEMORY
; lwIP 2 - Higher Bandwidth
; -DPIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH
; lwIP 2 - Higher Bandwidth Low Memory no Features
; -DPIO_FRAMEWORK_ARDUINO_LWIP2_LOW_MEMORY_LOW_FLASH
; VTABLES in Heap
; -DVTABLES_IN_DRAM
; VTABLES in IRAM
; -DVTABLES_IN_IRAM
2020-05-08 07:49:18 +01:00
; Exception code in firmware /needs much space!
2019-11-29 13:59:03 +00:00
; -fexceptions
; -lstdc++-exc
2020-11-02 07:09:23 +00:00
[common32]
platform = ${core32.platform}
platform_packages = ${core32.platform_packages}
build_unflags = ${core32.build_unflags}
build_flags = ${core32.build_flags}
board = esp32dev
board_build.ldscript = esp32_out.ld
board_build.partitions = esp32_partition_app1984k_spiffs64k.csv
board_build.flash_mode = ${common.board_build.flash_mode}
board_build.f_flash = ${common.board_build.f_flash}
board_build.f_cpu = ${common.board_build.f_cpu}
monitor_speed = ${common.monitor_speed}
upload_port = ${common.upload_port}
upload_resetmethod = ${common.upload_resetmethod}
upload_speed = 921600
extra_scripts = ${common.extra_scripts}
lib_ldf_mode = ${library.lib_ldf_mode}
shared_libdeps_dir = ${library.shared_libdeps_dir}
; *** ESP32 lib. ALWAYS needed for ESP32 !!!
lib/libesp32
2020-09-19 11:30:03 +01:00
[core32]
2020-11-02 07:09:23 +00:00
; Activate Stage Core32 by removing ";" in next 4 lines, if you want to override the standard core32
;platform = ${core32_stage.platform}
2020-09-19 11:30:03 +01:00
;platform_packages = ${core32_stage.platform_packages}
2020-11-02 07:09:23 +00:00
;build_unflags = ${core32_stage.build_unflags}
;build_flags = ${core32_stage.build_flags}
2020-09-19 11:30:03 +01:00
[core32_stage]
2020-11-02 07:09:23 +00:00
platform = espressif32@2.0.0
platform_packages = tool-esptoolpy@1.20800.0
framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#f7fb00632e04d74a7890a77fa7dbbb8ae572e866
build_unflags = ${esp32_defaults.build_unflags}
build_flags = ${esp32_defaults.build_flags}
-D ESP32_STAGE=true
[library]
lib_ldf_mode = chain+
shared_libdeps_dir = lib
; *** Library disable / enable for variant Tasmota(32). Disable reduces compile time
; *** !!! Disabling needed libs will generate compile errors !!!
; *** The resulting firmware will NOT be different if you leave all libs enabled
; *** Disabling by putting a ";" in front of the lib name
; *** If you dont know what it is all about, do not change
lib_extra_dirs =
; *** Only disabled for Tasmota minimal and Tasmota light. For all other variants needed!
lib/lib_basic
; **** I2C devices. Most sensors. Disable only if you dont have ANY I2C device enabled
lib/lib_i2c
; *** Displays. Disable if you dont have any Display activated
lib/lib_display
; *** Bear SSL and base64. Disable if you dont have SSL or TLS activated
; lib/lib_ssl
; *** Audio needs a lot of time to compile. Mostly not used functions. Recommended to disable
; lib/lib_audio
; *** RF 433 stuff (not RF Bridge). Recommended to disable
lib/lib_rf
; *** Mostly not used functions. Recommended to disable
; lib/lib_div
2020-09-19 11:30:03 +01:00
2019-11-29 13:59:03 +00:00
; *** Debug version used for PlatformIO Home Project Inspection
[env:tasmota-debug]
2020-11-02 07:09:23 +00:00
build_type = debug
build_unflags = ${esp_defaults.build_unflags}
build_flags = ${esp82xx_defaults.build_flags}
; -Wstack-usage=300
[env:tasmota32-debug]
extends = env:tasmota32
build_type = debug
build_unflags = ${esp32_defaults.build_unflags}
build_flags = ${esp32_defaults.build_flags}
; -Wstack-usage=300