This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC2530: Z-Tool Bind as Coordinator

Part Number: CC2530
Other Parts Discussed in Thread: CC2531, Z-STACK

Hi,

Currently I'm trying to build a Zigbee network using the CC2530 as a ZC. I'm just getting to know zigbee and so far it seems to be quite different from BLE or other low power wireless interfaces. 

The mentioned CC2530 module has the Z-Stack 3.0.2 ZNP firmware flashed and is connected to the pc which runs Z-Tool 2.0. I have a thermostat which is the device i'm trying to interface with. Beside this i have a CC2531 module connected as sniffer on my pc.

I have successfully paired the device, requested descriptors and can bind to clusters. However, I'm expecting data when I bind to a specified cluster but nothing is showing up. I have the Z-Tool log with the commands sent after pairing noted below.

Some details on addresses:

Coordinator IEEEAddr: 0x00124B001D37AA40

Device NwkAddr: 0xD1A3

Device IEEEAddr: 0x842E14FFFE590A49

<TX>10:17:15.63 COM19 ZDO_ACTIVE_EP_REQ (0x2505)
  DstAddr: 0xD1A3
  NWKAddrOfInterest: 0xD1A3

<RX>10:17:15.64 COM19 ZDO_ACTIVE_EP_REQ_SRSP (0x6505)
  Status: afStatus_SUCCESS (0x0)

<RX>10:17:18.86 COM19 ZDO_ACTIVE_EP_RSP (0x4585)
  SrcAddr: 0xD1A3
  Status: ZDP_SUCCESS (0x0)
  NwkAddr: 0xD1A3
  ActiveEPCount: 0x01
  ActiveEPList: . (0x01)

<TX>10:20:30.93 COM19 ZDO_SIMPLE_DESC_REQ (0x2504)
  DstAddr: 0xD1A3
  NWKAddrOfInterest: 0xD1A3
  Endpoint: 0x01

<RX>10:20:30.94 COM19 ZDO_SIMPLE_DESC_REQ_SRSP (0x6504)
  Status: afStatus_SUCCESS (0x0)

<RX>10:20:31.24 COM19 ZDO_SIMPLE_DESC_RSP (0x4584)
  SrcAddr: 0xD1A3
  Status: ZDP_SUCCESS (0x0)
  NwkAddr: 0xD1A3
  Len: 0x1C
  Endpoint: 0x01
  ProfileID: 0x0104
  DeviceID: 0x0301
  DeviceVersion: 1 (0x1)
  NumInClusters: 0x08
  InClusterList: 0x0000, 0x0001, 0x0003, 0x000A, 0x0020, 0x0201, 0x0204, 0x0B05
  NumOutClusters: 0x02
  OutClusterList: 0x0000, 0x0019

<TX>10:27:08.58 COM19 AF_REGISTER (0x2400)
  EndPoint: 0x01
  AppProfID: 0x0104
  AppDeviceId: 0x0301
  AppDevVer: 0x01
  LatencyReq: NO_LATENCY_REQS (0x0)
  AppNumInClusters: 0x08
  AppInClusterList: 0x0000, 0x0001, 0x0003, 0x000A, 0x0020, 0x0201, 0x0204, 0x0B06
  AppNumOutClusters: 0x02
  AppOutClusterList: 0x0000, 0x0019

<RX>10:27:08.59 COM19 AF_REGISTER_SRSP (0x6400)
  Status: afStatus_SUCCESS (0x0)

<TX>10:44:23.66 COM19 ZDO_BIND_REQ (0x2521)
  DstAddr: 0xD1A3
  SrcAddress: 0x842E14FFFE590A49
  SrcEndpoint: 0x01
  ClusterID: 0x0000
  BindAddrMode: 0x03 (ADDRESS_64_BIT) (0x3)
  BindAddr: @.7..K.. (0x40, 0xAA, 0x37, 0x1D, 0x00, 0x4B, 0x12, 0x00)
  BindEndpoint: 0x01

<RX>10:44:23.67 COM19 ZDO_BIND_REQ_SRSP (0x6521)
  Status: afStatus_SUCCESS (0x0)

<RX>10:44:28.82 COM19 ZDO_BIND_RSP (0x45A1)
  SrcAddr: 0xD1A3
  Status: ZDP_SUCCESS (0x0)


After these command's, no data is showing up. Is there any invalid config that can be seen? Or am I misunderstanding the way Zigbee handles data?

Best regards