Remove debug leftovers

This commit is contained in:
Stephan Hadinger 2022-01-05 12:28:07 +01:00
parent 0e2af52d97
commit 913db86f15

View File

@ -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,9 +738,7 @@ 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;
case FUNC_COMMAND:
result = DecodeCommand(kBrCommands, BerryCommand);