Skip to content

Commit

Permalink
Merge branch 'feature/zboss_lib_build_0.3.1' into 'master'
Browse files Browse the repository at this point in the history
zigbee: example API update

See merge request espressif/esp-idf!22008
  • Loading branch information
likunqiao097304 committed Feb 3, 2023
2 parents 732df63 + fde11f6 commit a63a73a
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion examples/zigbee/esp_zigbee_gateway/main/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## IDF Component Manager Manifest File
dependencies:
espressif/esp-zboss-lib: "~0.3.0"
espressif/esp-zigbee-lib: "~0.4.1"
espressif/esp-zigbee-lib: "~0.5.0"
## Required IDF version
idf:
version: ">=5.0.0"
4 changes: 2 additions & 2 deletions examples/zigbee/esp_zigbee_gateway/partitions.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
nvs, data, nvs, 0x9000, 0x6000,
phy_init, data, phy, 0xf000, 0x1000,
factory, app, factory, 0x10000, 550K,
zb_storage, data, fat, 0x9a000, 128K,
zb_fct, data, fat, 0xba000, 1K,
zb_storage, data, fat, 0x9a000, 16K,
zb_fct, data, fat, 0x9e000, 1K,
2 changes: 1 addition & 1 deletion examples/zigbee/esp_zigbee_rcp/main/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## IDF Component Manager Manifest File
dependencies:
espressif/esp-zboss-lib: "~0.3.0"
espressif/esp-zigbee-lib: "~0.4.1"
espressif/esp-zigbee-lib: "~0.5.0"
## Required IDF version
idf:
version: ">=5.0.0"
2 changes: 1 addition & 1 deletion examples/zigbee/esp_zigbee_rcp/partitions.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
nvs, data, nvs, 0x9000, 0x6000,
phy_init, data, phy, 0xf000, 0x1000,
factory, app, factory, 0x10000, 550K,
zb_storage, data, fat, 0x9a000, 128K,
zb_storage, data, fat, 0x9a000, 16K,
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## IDF Component Manager Manifest File
dependencies:
espressif/esp-zigbee-lib: "~0.4.1"
espressif/esp-zigbee-lib: "~0.5.0"
espressif/esp-zboss-lib: "~0.3.0"
espressif/led_strip: "~2.0.0"
## Required IDF version
Expand Down
4 changes: 2 additions & 2 deletions examples/zigbee/light_sample/HA_on_off_light/partitions.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
nvs, data, nvs, 0x9000, 0x6000,
phy_init, data, phy, 0xf000, 0x1000,
factory, app, factory, 0x10000, 550K,
zb_storage, data, fat, 0x9a000, 128K,
zb_fct, data, fat, 0xba000, 1K,
zb_storage, data, fat, 0x9a000, 16K,
zb_fct, data, fat, 0x9e000, 1K,
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ static void bdb_start_top_level_commissioning_cb(uint8_t mode_mask)
ESP_ERROR_CHECK(esp_zb_bdb_start_top_level_commissioning(mode_mask));
}

void user_find_cb(uint8_t zdo_status, uint16_t addr, uint8_t endpoint)
void user_find_cb(esp_zb_zdp_status_t zdo_status, uint16_t addr, uint8_t endpoint, void *user_ctx)
{
ESP_LOGI(TAG, "User find cb: address:0x%x, endpoint:%d, response_status:%d", addr, endpoint, zdo_status);
ESP_LOGI(TAG, "User find cb: response_status:%d, address:0x%x, endpoint:%d", zdo_status, addr, endpoint);
if (zdo_status == ESP_ZB_ZDP_STATUS_SUCCESS) {
on_off_light.endpoint = endpoint;
on_off_light.short_addr = addr;
Expand Down Expand Up @@ -145,7 +145,7 @@ void esp_zb_app_signal_handler(esp_zb_app_signal_t *signal_struct)
esp_zb_zdo_match_desc_req_param_t cmd_req;
cmd_req.dst_nwk_addr = dev_annce_params->device_short_addr;
cmd_req.addr_of_interest = dev_annce_params->device_short_addr;
esp_zb_zdo_find_on_off_light(&cmd_req, user_find_cb);
esp_zb_zdo_find_on_off_light(&cmd_req, user_find_cb, NULL);
break;
default:
ESP_LOGI(TAG, "ZDO signal: %d, status: %d", sig_type, err_status);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## IDF Component Manager Manifest File
dependencies:
espressif/esp-zigbee-lib: "~0.4.1"
espressif/esp-zigbee-lib: "~0.5.0"
espressif/esp-zboss-lib: "~0.3.0"
## Required IDF version
idf:
Expand Down
4 changes: 2 additions & 2 deletions examples/zigbee/light_sample/HA_on_off_switch/partitions.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
nvs, data, nvs, 0x9000, 0x6000,
phy_init, data, phy, 0xf000, 0x1000,
factory, app, factory, 0x10000, 550K,
zb_storage, data, fat, 0x9a000, 128K,
zb_fct, data, fat, 0xba000, 1K,
zb_storage, data, fat, 0x9a000, 16K,
zb_fct, data, fat, 0x9e000, 1K,

0 comments on commit a63a73a

Please sign in to comment.