espressif / esp-zigbee-sdk

Espressif Zigbee SDK
Apache License 2.0
178 stars 31 forks source link

zb_apsde_data_confirm_handler status parameter - how to decode it? (TZ-1293) #482

Open remenyo opened 2 weeks ago

remenyo commented 2 weeks ago

Question

Hello, I send data to devices using esp_zb_aps_data_request() and I get results about the operation in the zb_apsde_data_confirm_handler function, which has a esp_zb_apsde_data_confirm_t data object, containing a status field:

typedef struct esp_zb_apsde_data_confirm_s {
    uint8_t status;           /*!< The status of data confirm. 0: success, otherwise failed */
    // ...
}

I have not found information about this status code, but I get various ones when something is wrong like 185, 47, 10... Can you dirrect to me some resource that lists these codes?

Thank you

Additional context.

No response