diff --git a/tasmota/xdrv_52_9_berry.ino b/tasmota/xdrv_52_9_berry.ino index 7ce662a2a..c48ab561d 100644 --- a/tasmota/xdrv_52_9_berry.ino +++ b/tasmota/xdrv_52_9_berry.ino @@ -728,7 +728,6 @@ bool Xdrv52(uint8_t function) BrLoad("autoexec.be"); // run autoexec.be at first tick, so we know all modules are initialized berry.autoexec_done = true; } - callBerryEventDispatcher(PSTR("every_50ms"), nullptr, 0, nullptr); break; // Berry wide commands and events @@ -739,10 +738,8 @@ bool Xdrv52(uint8_t function) result = callBerryRule(nullptr, true); break; case FUNC_MQTT_DATA: -{int32_t now = millis(); result = callBerryEventDispatcher(PSTR("mqtt_data"), XdrvMailbox.topic, 0, XdrvMailbox.data, XdrvMailbox.data_len); -AddLog(LOG_LEVEL_INFO, ">>>: mqtt_data ms = %i", millis()-now);} - break; + break; case FUNC_COMMAND: result = DecodeCommand(kBrCommands, BerryCommand); if (!result) {