From 77b9f9faaad2bca0f1eae334a2debc54089dfb9d Mon Sep 17 00:00:00 2001 From: stefanbode Date: Thu, 17 Feb 2022 20:01:03 +0100 Subject: [PATCH] changed compiler option to USE_RULES check --- tasmota/support_tasmota.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/support_tasmota.ino b/tasmota/support_tasmota.ino index 70fd03c18..676f005b9 100644 --- a/tasmota/support_tasmota.ino +++ b/tasmota/support_tasmota.ino @@ -409,7 +409,7 @@ void SetPowerOnState(void) } } TasmotaGlobal.blink_powersave = TasmotaGlobal.power; -#ifndef FIRMWARE_MINIMAL +#ifdef USE_RULES RulesEvery50ms(); #endif }