benzino77
benzino77
Sure! Let's leave it open. Maybe someone will pick it up ;)
Hi! I think that you need is to add some _defines_ in "Custom parameters" text field as stated in the documentation: https://tasmota.github.io/docs/IPv6/ Something like that: ```c #define PIO_FRAMEWORK_ARDUINO_LWIP2_IPV6_HIGHER_BANDWIDTH #define USE_IPV6...
So it looks like some changes needs to be done on `platformio.ini` file level. TasmoCompiler is not ready for that... yet.
As I understand correctly Tasmota driver, there has to be `USE_BLE_ESP32` and `USE_MI_ESP32` defined. Addtionally there has to be `USE_MI_HOMEKIT` and one of those `CONFIG_IDF_TARGET_ESP32` or `CONFIG_IDF_TARGET_ESP32C3` or `CONFIG_IDF_TARGET_ESP32S3` defined...
Does it work for you?
Have you read this part of documentation [link](https://tasmota.github.io/docs/Bluetooth_MI32/)? Select "Bluetooth" from features list and add those line in "Custom parametrs" field: ```C #ifdef USE_MI_HOMEKIT #undef USE_MI_HOMEKIT #endif #define USE_MI_HOMEKIT 1...
> Unselect "Bluetooth" from features list and add those line in "Custom parametrs" field: The "Bluetooth" feature needs to be SELECTED/CHECKED. If it does not work for you please contact...
Thanks! Could you please tell me why we need to add this functionality? I have to admit that I have no clue what for those ELF files would be needed.
I'm not sure that "average" Tasmota user will need to debug stack trace of their devices.I'm sure it is a nice feature to have it available, but I don't want...
Jan, try to contact Tasmota Dev Team on discord. As stated here: https://tasmota.github.io/docs/Modbus-Bridge this functionality should be enabled by: ```c #ifndef USE_MODBUS_BRIDGE #define USE_MODBUS_BRIDGE // Add support for software Modbus...