Silence a warning about unhandled callbacks

The firmware provides parsed messages for those responses but
we don't use them as nymea-zigbee parses this on its own.
This commit is contained in:
Michael Zanetti 2022-10-14 22:39:22 +02:00
parent a70afb965d
commit f0c7172755

View File

@ -826,6 +826,9 @@ void ZigbeeBridgeControllerTi::onInterfacePacketReceived(Ti::SubSystem subSystem
case Ti::ZDOCommandSimpleDescRsp:
case Ti::ZDOCommandActiveEpRsp:
case Ti::ZDOCommandBindRsp:
case Ti::ZDOCommandMgmtLqiRsp:
case Ti::ZDOCommandMgmtRtgRsp:
case Ti::ZDOCommandMgmtBindRsp:
// silencing these as we're using the raw data in MsgCbIncoming instead
// nymea-zigbee parses this on its own.
break;
@ -883,7 +886,7 @@ void ZigbeeBridgeControllerTi::onInterfacePacketReceived(Ti::SubSystem subSystem
break;
}
default:
qCWarning(dcZigbeeController()) << "Unhandled ZDO AREQ notification";
qCWarning(dcZigbeeController()) << "Unhandled ZDO AREQ notification" << (Ti::ZDOCommand)command;
}
break;
case Ti::SubSystemAF: