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?
Question
Hello, I send data to devices using
esp_zb_aps_data_request()
and I get results about the operation in thezb_apsde_data_confirm_handler
function, which has aesp_zb_apsde_data_confirm_t
data object, containing astatus
field: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