We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6015fd7 commit a29b006Copy full SHA for a29b006
libraries/Zigbee/src/ZigbeeCore.cpp
@@ -237,7 +237,9 @@ void ZigbeeCore::closeNetwork() {
237
}
238
239
static void bdb_start_top_level_commissioning_cb(uint8_t mode_mask) {
240
- ESP_ERROR_CHECK(esp_zb_bdb_start_top_level_commissioning(mode_mask));
+ if(esp_zb_bdb_start_top_level_commissioning(mode_mask) != ESP_OK){
241
+ log_e("Failed to start Zigbee commissioning");
242
+ }
243
244
245
void esp_zb_app_signal_handler(esp_zb_app_signal_t *signal_struct) {
0 commit comments