mirror of https://github.com/arendst/Tasmota.git
Merge pull request #14296 from s-hadinger/remove_leftovers
Remove debug leftovers
This commit is contained in:
commit
923feb2096
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue