|
information
说明: |
建议参照本版块置顶帖内容输入必要信息 |
芯片型号: |
TLSR8258 |
SDK及版本: |
telink_zigbee_ble_concurrent_sdk_v2.4.0.1 |
I add 3 endpoints as below.
======================
/* Register endPoint */
printf("===========1===============\r\n");
af_endpointRegister(SAMPLE_LIGHT_ENDPOINT, (af_simple_descriptor_t *)&sampleLight_simpleDesc, zcl_rx_handler, NULL);
printf("===========2===============\r\n");
af_endpointRegister(SAMPLE_PIR_SENSOR_ENDPOINT, (af_simple_descriptor_t *)&samplePIRSensor_simpleDesc, zcl_rx_handler, NULL);
printf("===========3===============\r\n");
af_endpointRegister(SAMPLE_LIGHT_SENSOR_ENDPOINT, (af_simple_descriptor_t *)&sampleLightSensor_simpleDesc, zcl_rx_handler, NULL);
/* Register ZCL specific cluster information */
printf("===========4===============\r\n");
zcl_register(SAMPLE_LIGHT_ENDPOINT, SAMPLELIGHT_CB_CLUSTER_NUM, (zcl_specClusterInfo_t *)g_sampleLightClusterList);
printf("===========5===============\r\n");
zcl_register(SAMPLE_PIR_SENSOR_ENDPOINT, SAMPLEPIRSENSOR_CB_CLUSTER_NUM, (zcl_specClusterInfo_t *)g_samplePirSensorClusterList);
printf("===========6===============\r\n");
zcl_register(SAMPLE_LIGHT_SENSOR_ENDPOINT, SAMPLELIGHTSENSOR_CB_CLUSTER_NUM, (zcl_specClusterInfo_t *)g_sampleLightSensorClusterList);
printf("===========7===============\r\n");
======================
Result :
======================
===========4===============<CR><LF>
zcl?group?register?==================?ep-1, manuCode-0x0<CR><LF>
===========5===============<CR><LF>
zcl_group?register?==================?ep-2, manuCode-0x0<CR><LF>
===========6===============<CR><LF>
===========7===============<CR><LF>
======================
But It seems that 3rd endpoint is not registered.
What is problems ?
|
|