Skip to content

Commit

Permalink
DBG: zcl prints
Browse files Browse the repository at this point in the history
  • Loading branch information
devbis committed Dec 30, 2023
1 parent 88e0f08 commit 02a04c5
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions src/zcl_sensorCb.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,11 @@ void sensorDevice_zclProcessIncomingMsg(zclIncoming_t *pInHdlrMsg)
#endif
#ifdef ZCL_WRITE
case ZCL_CMD_WRITE_RSP:
printf("ZCL_CMD_WRITE_RSP %d, %d\r\n", cluster, pInHdlrMsg->attrCmd);
sensorDevice_zclWriteRspCmd(cluster, pInHdlrMsg->attrCmd);
break;
case ZCL_CMD_WRITE:
printf("ZCL_CMD_WRITE_RSP %d, %d\r\n", cluster, pInHdlrMsg->attrCmd);
sensorDevice_zclWriteReqCmd(cluster, pInHdlrMsg->attrCmd);
break;
#endif
Expand Down Expand Up @@ -268,7 +270,7 @@ static void sensorDevice_zclReportCmd(u16 clusterId, zclReportCmd_t *pReportCmd)
*/
status_t sensorDevice_basicCb(zclIncomingAddrInfo_t *pAddrInfo, u8 cmdId, void *cmdPayload)
{
printf("sampleSensor_basicCb\n");
printf("sampleSensor_basicCb\r\n");
if(cmdId == ZCL_CMD_BASIC_RESET_FAC_DEFAULT){
//Reset all the attributes of all its clusters to factory defaults
//zcl_nv_attr_reset();
Expand All @@ -281,7 +283,7 @@ status_t sensorDevice_basicCb(zclIncomingAddrInfo_t *pAddrInfo, u8 cmdId, void *
#ifdef ZCL_IDENTIFY
s32 sensorDevice_zclIdentifyTimerCb(void *arg)
{
printf("sampleSensor_zclIdentifyTimerCb\n");
printf("sensorDevice_zclIdentifyTimerCb\r\n");
if(g_zcl_identifyAttrs.identifyTime <= 0){
identifyTimerEvt = NULL;
return -1;
Expand All @@ -292,7 +294,7 @@ s32 sensorDevice_zclIdentifyTimerCb(void *arg)

void sensorDevice_zclIdentifyTimerStop(void)
{
printf("sampleSensor_zclIdentifyTimerStop\n");
printf("sensorDevice_zclIdentifyTimerStop\r\n");
if(identifyTimerEvt){
TL_ZB_TIMER_CANCEL(&identifyTimerEvt);
}
Expand All @@ -318,6 +320,7 @@ void sensorDevice_zclIdentifyCmdHandler(u8 endpoint, u16 srcAddr, u16 identifyTi
light_blink_stop();
}else{
if(!identifyTimerEvt){
printf("Identify time %d\r\n", identifyTime);
light_blink_start(identifyTime, 500, 500);
identifyTimerEvt = TL_ZB_TIMER_SCHEDULE(sensorDevice_zclIdentifyTimerCb, NULL, 1000);
}
Expand Down Expand Up @@ -375,6 +378,7 @@ static void sensorDevice_zcltriggerCmdHandler(zcl_triggerEffect_t *pTriggerEffec
*/
static void sensorDevice_zclIdentifyQueryRspCmdHandler(u8 endpoint, u16 srcAddr, zcl_identifyRspCmd_t *identifyRsp)
{
printf("sensorDevice_zclIdentifyQueryRspCmdHandler %d %d\r\n", endpoint, srcAddr);
#if FIND_AND_BIND_SUPPORT
if(identifyRsp->timeout){
findBindDst_t dstInfo;
Expand All @@ -399,20 +403,28 @@ static void sensorDevice_zclIdentifyQueryRspCmdHandler(u8 endpoint, u16 srcAddr,
*/
status_t sensorDevice_identifyCb(zclIncomingAddrInfo_t *pAddrInfo, u8 cmdId, void *cmdPayload)
{
printf("sensorDevice_identifyCb 0x%d\r\n", cmdId);
if(pAddrInfo->dstEp == SENSOR_DEVICE_ENDPOINT){
if(pAddrInfo->dirCluster == ZCL_FRAME_CLIENT_SERVER_DIR){
switch(cmdId){
case ZCL_CMD_IDENTIFY:
printf("ZCL_CMD_IDENTIFY 0x%d\r\n", ((zcl_identifyCmd_t *)cmdPayload)->identifyTime);
sensorDevice_zclIdentifyCmdHandler(pAddrInfo->dstEp, pAddrInfo->srcAddr, ((zcl_identifyCmd_t *)cmdPayload)->identifyTime);
break;
case ZCL_CMD_IDENTIFY_QUERY:
printf("ZCL_CMD_IDENTIFY_QUERY 0x%d\r\n", ((zcl_identifyCmd_t *)cmdPayload)->identifyTime);
sensorDevice_zclIdentifyCmdHandler(pAddrInfo->dstEp, pAddrInfo->srcAddr, ((zcl_identifyCmd_t *)cmdPayload)->identifyTime);
break;
case ZCL_CMD_TRIGGER_EFFECT:
printf("ZCL_CMD_TRIGGER_EFFECT\r\n");
sensorDevice_zcltriggerCmdHandler((zcl_triggerEffect_t *)cmdPayload);
break;
default:
break;
}
}else{
if(cmdId == ZCL_CMD_IDENTIFY_QUERY_RSP){
printf("ZCL_CMD_IDENTIFY_QUERY_RSP\r\n");
sensorDevice_zclIdentifyQueryRspCmdHandler(pAddrInfo->dstEp, pAddrInfo->srcAddr, (zcl_identifyRspCmd_t *)cmdPayload);
}
}
Expand Down

0 comments on commit 02a04c5

Please sign in to comment.