Tasmota/platformio_override_sample.ini

224 lines
10 KiB
INI
Raw Normal View History

2020-11-02 07:16:50 +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 ***
; *****************************************************************
;
; 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
2021-02-02 14:07:13 +00:00
;core_dir = .platformio
2020-11-02 07:16:50 +00:00
extra_configs = platformio_tasmota_cenv.ini
; *** Build/upload environment
default_envs =
; *** Uncomment the line(s) below to select version(s)
2021-02-02 14:07:13 +00:00
tasmota
2020-11-02 07:16:50 +00:00
; tasmota-debug
; tasmota-ircustom
; tasmota-minimal
; tasmota-lite
; tasmota-knx
; tasmota-sensors
; tasmota-display
; tasmota-zbbridge
; tasmota-ir
; tasmota32
2021-02-11 13:53:21 +00:00
; tasmota32-bluetooth
2020-11-02 07:16:50 +00:00
; tasmota32-webcam
2021-03-14 10:21:55 +00:00
; tasmota32-knx
; tasmota32-sensors
2020-11-02 07:16:50 +00:00
; tasmota32-display
; tasmota32-ir
; tasmota32-ircustom
2020-11-22 15:21:38 +00:00
; tasmota32solo1
2021-04-16 14:56:04 +01:00
; tasmota32c3
2021-02-02 14:07:13 +00:00
; tasmota32s2
2021-01-02 15:16:07 +00:00
; tasmota32-odroidgo
2021-01-20 10:48:17 +00:00
; tasmota32-core2
2020-11-02 07:16:50 +00:00
[common]
2020-11-02 12:04:48 +00:00
platform_packages = ${core.platform_packages}
build_unflags = ${core.build_unflags}
build_flags = ${core.build_flags}
2020-11-02 07:16:50 +00:00
; *** Optional Debug messages
; -DDEBUG_TASMOTA_CORE
; -DDEBUG_TASMOTA_DRIVER
; -DDEBUG_TASMOTA_SENSOR
2021-01-12 08:44:18 +00:00
; *** CAUTION *** This setting is ONLY possible since 12.01.2021 with development version !!!
; *** Enable only if you exactly know what are you doing
; *** If you try with earlier builds a serial erase and flash is probably needed
;
; Build variant 1MB = 1MB firmware no filesystem (default)
2021-04-18 10:34:34 +01:00
;board = esp8266_1M
; Build variant 2MB = 1MB firmware, 1MB filesystem (most Shelly devices)
;board = esp8266_2M1M
; Build variant 4MB = 1MB firmware, 1MB OTA, 2MB filesystem (WEMOS D1 Mini, NodeMCU, Sonoff POW)
;board = esp8266_4M2M
2021-01-12 08:44:18 +00:00
2020-11-02 07:16:50 +00:00
; set CPU frequency to 80MHz (default) or 160MHz
2020-11-02 12:04:48 +00:00
;board_build.f_cpu = 160000000L
2020-11-02 07:16:50 +00:00
; set Flash chip frequency to 40MHz (default), 20MHz, 26Mhz, 80Mhz
2020-11-02 12:04:48 +00:00
;board_build.f_flash = 20000000L
;board_build.f_flash = 26000000L
;board_build.f_flash = 80000000L
2020-11-02 07:16:50 +00:00
; *** Upload Serial reset method for Wemos and NodeMCU
2020-11-02 12:04:48 +00:00
upload_port = COM5
2020-11-02 07:16:50 +00:00
2020-11-02 12:04:48 +00:00
extra_scripts = ${scripts_defaults.extra_scripts}
; pio-tools/obj-dump.py
2020-11-02 07:16:50 +00:00
2020-11-02 12:04:48 +00:00
lib_extra_dirs = ${library.lib_extra_dirs}
2020-11-02 07:16:50 +00:00
[core]
; Activate only (one set) if you want to override the standard core defined in platformio.ini !!!
2020-11-02 12:04:48 +00:00
;platform_packages = ${tasmota_stage.platform_packages}
;build_unflags = ${tasmota_stage.build_unflags}
;build_flags = ${tasmota_stage.build_flags}
2020-11-02 07:16:50 +00:00
2020-11-02 12:04:48 +00:00
;platform_packages = ${core_stage.platform_packages}
;build_unflags = ${core_stage.build_unflags}
;build_flags = ${core_stage.build_flags}
2020-11-02 07:16:50 +00:00
[tasmota_stage]
2020-12-03 14:02:59 +00:00
; *** Esp8266 core for Arduino version Tasmota stage. Backport for PWM selection
platform_packages = tasmota/framework-arduinoespressif8266 @ ~2.7.4
2020-11-02 12:04:48 +00:00
build_unflags = ${esp_defaults.build_unflags}
build_flags = ${esp82xx_defaults.build_flags}
2020-12-03 14:02:59 +00:00
; *** Use ONE of the two PWM variants. Tasmota default is Locked PWM
;-DWAVEFORM_LOCKED_PHASE
-DWAVEFORM_LOCKED_PWM
2020-11-02 07:16:50 +00:00
[core_stage]
2020-11-04 08:26:12 +00:00
; *** Esp8266 core for Arduino version stage
2020-11-05 08:06:48 +00:00
platform_packages = framework-arduinoespressif8266 @ https://github.com/esp8266/Arduino.git
2020-11-04 08:26:12 +00:00
; *** Use Xtensa build chain 10.2. GNU13 from https://github.com/earlephilhower/esp-quick-toolchain
mcspr/toolchain-xtensa @ 5.100200.201223
2020-11-02 12:04:48 +00:00
build_unflags = ${esp_defaults.build_unflags}
2020-11-04 08:26:12 +00:00
-Wswitch-unreachable
2020-11-02 12:04:48 +00:00
build_flags = ${esp82xx_defaults.build_flags}
; *** Use ONE of the two PWM variants. Tasmota default is Locked PWM
;-DWAVEFORM_LOCKED_PHASE
-DWAVEFORM_LOCKED_PWM
2020-11-04 08:26:12 +00:00
-Wno-switch-unreachable
2020-11-10 09:51:44 +00:00
2020-11-02 07:16:50 +00:00
[common32]
2020-11-02 12:04:48 +00:00
platform_packages = ${core32.platform_packages}
build_unflags = ${core32.build_unflags}
build_flags = ${core32.build_flags}
2021-01-15 14:09:49 +00:00
upload_port = COM4
2020-11-02 12:04:48 +00:00
lib_extra_dirs = ${library.lib_extra_dirs}
; *** ESP32 lib. ALWAYS needed for ESP32 !!!
lib/libesp32
; *** uncomment the following line if you want to use LVGL in a Tasmota32 build
; lib/libesp32_lvgl
2021-03-11 13:48:59 +00:00
; *** uncomment the following line if you want to use Bluetooth or Apple Homekit in a Tasmota32 build
; lib/libesp32_div
2021-04-04 12:45:27 +01:00
; *** uncomment the following line if you want to use Epaper driver epidy in your Tasmota32 build
; lib/libesp32_epdiy
2021-01-15 14:09:49 +00:00
2020-11-02 07:16:50 +00:00
[core32]
2021-01-11 12:51:23 +00:00
; Activate Stage Core32 by removing ";" in next 3 lines, if you want to override the standard core32
2021-03-01 11:48:38 +00:00
;platform_packages = ${core32_stage.platform_packages}
;build_unflags = ${core32_stage.build_unflags}
;build_flags = ${core32_stage.build_flags}
2020-11-02 07:16:50 +00:00
[core32_stage]
2021-03-01 11:47:39 +00:00
platform_packages = framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git
2021-01-05 11:17:44 +00:00
platformio/tool-mklittlefs @ ~1.203.200522
2020-11-02 12:04:48 +00:00
build_unflags = ${esp32_defaults.build_unflags}
build_flags = ${esp32_defaults.build_flags}
2021-03-01 11:47:39 +00:00
-DESP32_STAGE=true
2020-11-02 07:16:50 +00:00
[library]
2020-11-02 12:04:48 +00:00
shared_libdeps_dir = lib
2020-11-02 07:16:50 +00:00
; *** 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
2020-11-02 12:04:48 +00:00
lib_extra_dirs =
2020-11-02 07:16:50 +00:00
; *** Only disabled for Tasmota minimal and Tasmota light. For all other variants needed!
2020-11-02 12:04:48 +00:00
lib/lib_basic
2020-11-02 07:16:50 +00:00
; **** I2C devices. Most sensors. Disable only if you dont have ANY I2C device enabled
2020-11-02 12:04:48 +00:00
lib/lib_i2c
2020-11-02 07:16:50 +00:00
; *** Displays. Disable if you dont have any Display activated
2020-11-02 12:04:48 +00:00
lib/lib_display
2020-11-02 07:16:50 +00:00
; *** Bear SSL and base64. Disable if you dont have SSL or TLS activated
2020-11-02 12:04:48 +00:00
lib/lib_ssl
2020-11-02 07:16:50 +00:00
; *** Audio needs a lot of time to compile. Mostly not used functions. Recommended to disable
2020-11-02 12:04:48 +00:00
lib/lib_audio
2020-11-02 07:16:50 +00:00
; *** RF 433 stuff (not RF Bridge). Recommended to disable
2020-11-02 12:04:48 +00:00
lib/lib_rf
2020-11-02 07:16:50 +00:00
; *** Mostly not used functions. Recommended to disable
2020-11-02 12:04:48 +00:00
lib/lib_div
2020-11-02 07:16:50 +00:00
2021-02-02 09:11:22 +00:00
; *** EXPERIMENTAL Tasmota version for ESP32-S2
[env:tasmota32s2]
2021-03-14 10:31:21 +00:00
extends = env:tasmota32_base
2021-02-02 14:07:13 +00:00
board = esp32s2
board_build.flash_mode = qio
2021-04-17 10:42:50 +01:00
platform_packages = framework-arduinoespressif32 @ https://github.com/Jason2866/esp32-arduino-lib-builder/releases/download/v.2.0.0.pre/framework-arduinoespressif32-master-cf457d412.tar.gz
2021-02-02 09:11:22 +00:00
platformio/tool-mklittlefs @ ~1.203.200522
platformio/tool-esptoolpy @ ~1.30000.0
build_unflags = ${esp32_defaults.build_unflags}
2021-04-17 18:45:56 +01:00
build_flags = ${common32.build_flags} -DFIRMWARE_LITE
lib_extra_dirs = lib/libesp32
2021-02-03 14:42:47 +00:00
lib_ignore =
NimBLE-Arduino
Micro-RTSP
2021-04-17 19:04:23 +01:00
ESP32-HomeKit
2021-04-17 18:45:56 +01:00
2020-11-02 07:16:50 +00:00
2021-04-16 14:56:04 +01:00
; *** EXPERIMENTAL Tasmota version for ESP32-C3
2021-04-14 18:42:13 +01:00
[env:tasmota32c3]
2021-04-12 15:32:46 +01:00
extends = env:tasmota32_base
2021-04-16 14:56:04 +01:00
board = esp32c3
platform = https://github.com/Jason2866/platform-espressif32.git#feature/arduino-c3
2021-04-17 10:42:50 +01:00
platform_packages = framework-arduinoespressif32 @ https://github.com/Jason2866/esp32-arduino-lib-builder/releases/download/v.2.0.0.pre/framework-arduinoespressif32-master-cf457d412.tar.gz
2021-04-19 15:43:36 +01:00
tasmota/toolchain-riscv32
2021-04-16 14:56:04 +01:00
platformio/tool-mklittlefs @ ~1.203.200522
build_unflags = ${esp32_defaults.build_unflags} -mtarget-align
2021-04-17 18:45:56 +01:00
build_flags = ${esp32_defaults.build_flags} -DFIRMWARE_LITE
-I$PROJECT_DIR/include
-include "fix_esp32c3.h"
2021-04-16 14:56:04 +01:00
;-DESP32_STAGE=true
2021-04-17 18:45:56 +01:00
lib_extra_dirs = lib/libesp32
lib_ignore =
NimBLE-Arduino
Micro-RTSP
2021-04-16 14:56:04 +01:00
2021-04-18 10:34:34 +01:00
; *** EXPERIMENTAL Tasmota version for ESP32 IDF4.4.
2021-04-16 14:56:04 +01:00
[env:tasmota32idf4]
extends = env:tasmota32_base
2021-04-12 15:32:46 +01:00
platform = https://github.com/Jason2866/platform-espressif32.git#feature/arduino-idf-v4.4
2021-04-18 10:34:34 +01:00
platform_packages = framework-arduinoespressif32 @ https://github.com/Jason2866/esp32-arduino-lib-builder/releases/download/v.2.0.0.pre/framework-arduinoespressif32-master-cf457d412.tar.gz
2021-04-12 15:32:46 +01:00
platformio/tool-mklittlefs @ ~1.203.200522
build_unflags = ${esp32_defaults.build_unflags}
build_flags = ${esp32_defaults.build_flags}
2021-04-16 14:56:04 +01:00
;-DESP32_STAGE=true
2021-04-12 15:32:46 +01:00
2020-11-02 07:16:50 +00:00
; *** Debug version used for PlatformIO Home Project Inspection
[env:tasmota-debug]
2020-11-02 12:04:48 +00:00
build_type = debug
build_unflags = ${esp_defaults.build_unflags}
build_flags = ${esp82xx_defaults.build_flags}
; -Wstack-usage=300
2020-11-02 07:16:50 +00:00
[env:tasmota32-debug]
2021-03-14 10:31:21 +00:00
extends = env:tasmota32_base
2020-11-02 12:04:48 +00:00
build_type = debug
build_unflags = ${esp32_defaults.build_unflags}
build_flags = ${esp32_defaults.build_flags}
; -Wstack-usage=300