From e504f61fba40e52d3bf634ca97c8abdd0e88b787 Mon Sep 17 00:00:00 2001 From: barbudor Date: Thu, 30 Dec 2021 09:39:29 +0100 Subject: [PATCH] Add missing & for coherency --- tasmota/support_command.ino | 2 +- tasmota/xdrv_23_zigbee_A_impl.ino | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tasmota/support_command.ino b/tasmota/support_command.ino index a467f2de1..f3261c095 100644 --- a/tasmota/support_command.ino +++ b/tasmota/support_command.ino @@ -65,7 +65,7 @@ void (* const TasmotaCommand[])(void) PROGMEM = { &CmndTimeDst, &CmndAltitude, &CmndLedPower, &CmndLedState, &CmndLedMask, &CmndLedPwmOn, &CmndLedPwmOff, &CmndLedPwmMode, &CmndWifiPower, &CmndTempOffset, &CmndHumOffset, &CmndSpeedUnit, &CmndGlobalTemp, &CmndGlobalHum, &CmndSwitchText, #ifdef USE_I2C - &CmndI2cScan, CmndI2cDriver, + &CmndI2cScan, &CmndI2cDriver, #endif #ifdef USE_DEVICE_GROUPS &CmndDevGroupName, diff --git a/tasmota/xdrv_23_zigbee_A_impl.ino b/tasmota/xdrv_23_zigbee_A_impl.ino index 5f2e412a4..41ee70119 100644 --- a/tasmota/xdrv_23_zigbee_A_impl.ino +++ b/tasmota/xdrv_23_zigbee_A_impl.ino @@ -59,7 +59,7 @@ void (* const ZigbeeCommand[])(void) PROGMEM = { &CmndZbInfo, &CmndZbForget, &CmndZbSave, &CmndZbName, &CmndZbBind, &CmndZbUnbind, &CmndZbPing, &CmndZbModelId, &CmndZbLight, &CmndZbOccupancy, - &CmndZbRestore, &CmndZbBindState, &CmndZbMap, CmndZbLeave, + &CmndZbRestore, &CmndZbBindState, &CmndZbMap, &CmndZbLeave, &CmndZbConfig, &CmndZbData, &CmndZbScan, };