Merge PR #71: Silence a warning about unhandled callbacks

This commit is contained in:
jenkins 2022-10-17 11:20:02 +02:00
commit 705bf28cc3

View File

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