mirror of https://github.com/arendst/Tasmota.git
add ESP32 lib infos
This commit is contained in:
parent
0c93bdb5e8
commit
38021d3c92
|
@ -78,12 +78,26 @@ build_flags = ${esp_defaults.build_flags}
|
||||||
|
|
||||||
lib_ldf_mode = chain+
|
lib_ldf_mode = chain+
|
||||||
shared_libdeps_dir = lib
|
shared_libdeps_dir = lib
|
||||||
lib_extra_dirs =
|
; *** Library disable / enable for variant Tasmota. Disable reduces compile time
|
||||||
libesp32
|
; *** !!! Disabling needed libs will generate compile errors !!!
|
||||||
lib_basic
|
; *** The resulting firmware will NOT be different if you leave all libs enabled
|
||||||
lib_i2c
|
; *** Disabling by putting a ";" in front of the lib name
|
||||||
lib_display
|
; *** If you dont know what it is all about, do not change
|
||||||
lib_ssl
|
lib_extra_dirs =
|
||||||
lib_audio
|
; *** ESP32 lib. ALWAYS needed for ESP32 !!!
|
||||||
lib_rf
|
libesp32
|
||||||
lib_div
|
; *** Only disabled for Tasmota minimal and Tasmota light. For all other variants needed!
|
||||||
|
lib_basic
|
||||||
|
; **** I2C devices. Most sensors. Disable only if you dont have ANY I2C device enabled
|
||||||
|
lib_i2c
|
||||||
|
; *** Displays. Disable if you dont have any Display activated
|
||||||
|
lib_display
|
||||||
|
; *** Bear SSL and base64. Disable if you dont have SSL or TLS activated
|
||||||
|
lib_ssl
|
||||||
|
; *** Audio needs a lot of time to compile. Mostly not used functions. Recommended to disable
|
||||||
|
lib_audio
|
||||||
|
; *** RF 433 stuff (not RF Bridge). Recommended to disable
|
||||||
|
lib_rf
|
||||||
|
; *** Mostly not used functions. Recommended to disable
|
||||||
|
lib_div
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue