Skip to content

Commit

Permalink
Merge branch 'zigbee_bridge_update_v1_4' into 'release/v1.4'
Browse files Browse the repository at this point in the history
examples: remove ESP_ZB_MACSPLIT_DEVICE_BOOT signal in zigbee_bridge example. (backport)

See merge request app-frameworks/esp-matter!1047
  • Loading branch information
chshu committed Feb 19, 2025
2 parents d0454b1 + eb168da commit 9517c65
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions examples/bridge_apps/zigbee_bridge/main/app_zboss.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,13 @@ void esp_zb_app_signal_handler(esp_zb_app_signal_t *signal_struct)
esp_err_t err_status = signal_struct->esp_err_status;
esp_zb_app_signal_type_t sig_type = *p_sg_p;
esp_zb_zdo_signal_device_annce_params_t *dev_annce_params = NULL;
esp_zb_zdo_signal_macsplit_dev_boot_params_t *rcp_version = NULL;

switch (sig_type) {
case ESP_ZB_ZDO_SIGNAL_SKIP_STARTUP:
ESP_LOGI(TAG, "Zigbee stack initialized");
esp_zb_bdb_start_top_level_commissioning(ESP_ZB_BDB_MODE_INITIALIZATION);
break;

case ESP_ZB_MACSPLIT_DEVICE_BOOT:
ESP_LOGI(TAG, "Zigbee rcp device booted");
rcp_version = (esp_zb_zdo_signal_macsplit_dev_boot_params_t*)esp_zb_app_signal_get_params(p_sg_p);
ESP_LOGI(TAG, "Running RCP Version:%s", rcp_version->version_str);
break;

case ESP_ZB_BDB_SIGNAL_DEVICE_FIRST_START:
case ESP_ZB_BDB_SIGNAL_DEVICE_REBOOT:
if (err_status == ESP_OK) {
Expand Down

0 comments on commit 9517c65

Please sign in to comment.