2021-12-16 04:42:19 -05:00
|
|
|
/*
|
2024-01-25 01:03:10 -05:00
|
|
|
* SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD
|
2021-12-16 04:42:19 -05:00
|
|
|
*
|
2024-01-25 01:03:10 -05:00
|
|
|
* SPDX-License-Identifier: CC0-1.0
|
2021-12-16 04:42:19 -05:00
|
|
|
*
|
2024-01-25 01:03:10 -05:00
|
|
|
* Zigbee RCP Example
|
2021-12-16 04:42:19 -05:00
|
|
|
*
|
2024-01-25 01:03:10 -05:00
|
|
|
* This example code is in the Public Domain (or CC0 licensed, at your option.)
|
2021-12-16 04:42:19 -05:00
|
|
|
*
|
2024-01-25 01:03:10 -05:00
|
|
|
* Unless required by applicable law or agreed to in writing, this
|
|
|
|
* software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
|
|
* CONDITIONS OF ANY KIND, either express or implied.
|
2021-12-16 04:42:19 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "freertos/task.h"
|
2023-08-29 03:58:44 -04:00
|
|
|
#include "esp_log.h"
|
|
|
|
#include "nvs_flash.h"
|
2021-12-16 04:42:19 -05:00
|
|
|
#include "zb_scheduler.h"
|
|
|
|
#include "esp_zigbee_rcp.h"
|
|
|
|
|
|
|
|
#if (defined ZB_MACSPLIT_HOST && !defined ZB_MACSPLIT_DEVICE)
|
|
|
|
#error Only Zigbee rcp device should be defined
|
|
|
|
#endif
|
|
|
|
static const char *TAG = "ESP_ZB_RCP";
|
|
|
|
|
2022-10-26 02:40:02 -04:00
|
|
|
void esp_zb_app_signal_handler(esp_zb_app_signal_t *signal_struct)
|
2021-12-16 04:42:19 -05:00
|
|
|
{
|
2022-10-26 02:40:02 -04:00
|
|
|
uint32_t *p_sg_p = signal_struct->p_app_signal;
|
|
|
|
esp_err_t err_status = signal_struct->esp_err_status;
|
|
|
|
esp_zb_app_signal_type_t sig_type = *p_sg_p;
|
|
|
|
if (err_status == ESP_OK) {
|
|
|
|
} else if (sig_type == ESP_ZB_ZDO_SIGNAL_PRODUCTION_CONFIG_READY) {
|
2021-12-16 04:42:19 -05:00
|
|
|
ESP_LOGI(TAG, "Production config is not present or invalid");
|
|
|
|
} else {
|
2022-10-26 02:40:02 -04:00
|
|
|
ESP_LOGI(TAG, "Device started FAILED status %d", err_status);
|
2021-12-16 04:42:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-26 02:40:02 -04:00
|
|
|
static void esp_zb_task(void *pvParameters)
|
2021-12-16 04:42:19 -05:00
|
|
|
{
|
2022-10-26 02:40:02 -04:00
|
|
|
esp_zb_rcp_init();
|
|
|
|
esp_zb_rcp_main_loop_iteration();
|
2021-12-16 04:42:19 -05:00
|
|
|
}
|
|
|
|
|
2022-01-11 02:52:34 -05:00
|
|
|
void app_main(void)
|
2021-12-16 04:42:19 -05:00
|
|
|
{
|
2022-09-22 02:51:30 -04:00
|
|
|
esp_zb_platform_config_t config = {
|
|
|
|
.radio_config = ESP_ZB_DEFAULT_RADIO_CONFIG(),
|
|
|
|
.host_config = ESP_ZB_DEFAULT_HOST_CONFIG(),
|
2021-12-16 04:42:19 -05:00
|
|
|
};
|
2022-12-29 23:02:41 -05:00
|
|
|
ESP_ERROR_CHECK(nvs_flash_init());
|
2021-12-16 04:42:19 -05:00
|
|
|
/* load Zigbee rcp platform config to initialization */
|
2022-09-22 02:51:30 -04:00
|
|
|
esp_zb_macsplit_set_version(RCP_COMPILE_DEFINE);
|
|
|
|
ESP_ERROR_CHECK(esp_zb_platform_config(&config));
|
|
|
|
xTaskCreate(esp_zb_task, "Zigbee_main", 4096, NULL, 5, NULL);
|
2021-12-16 04:42:19 -05:00
|
|
|
}
|