Files
esp-idf/examples/zigbee/esp_zigbee_rcp/main/esp_zigbee_rcp.c
T

58 lines
1.8 KiB
C
Raw Normal View History

2021-12-16 17:42:19 +08:00
/*
* SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD
2021-12-16 17:42:19 +08:00
*
* SPDX-License-Identifier: CC0-1.0
2021-12-16 17:42:19 +08:00
*
* Zigbee RCP Example
2021-12-16 17:42:19 +08:00
*
* This example code is in the Public Domain (or CC0 licensed, at your option.)
2021-12-16 17:42:19 +08: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 17:42:19 +08:00
*/
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_log.h"
#include "nvs_flash.h"
2021-12-16 17:42:19 +08: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";
void esp_zb_app_signal_handler(esp_zb_app_signal_t *signal_struct)
2021-12-16 17:42:19 +08: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 17:42:19 +08:00
ESP_LOGI(TAG, "Production config is not present or invalid");
} else {
ESP_LOGI(TAG, "Device started FAILED status %d", err_status);
2021-12-16 17:42:19 +08:00
}
}
static void esp_zb_task(void *pvParameters)
2021-12-16 17:42:19 +08:00
{
esp_zb_rcp_init();
esp_zb_rcp_main_loop_iteration();
2021-12-16 17:42:19 +08:00
}
2022-01-11 15:52:34 +08:00
void app_main(void)
2021-12-16 17:42:19 +08:00
{
esp_zb_platform_config_t config = {
.radio_config = ESP_ZB_DEFAULT_RADIO_CONFIG(),
.host_config = ESP_ZB_DEFAULT_HOST_CONFIG(),
2021-12-16 17:42:19 +08:00
};
2022-12-30 12:02:41 +08:00
ESP_ERROR_CHECK(nvs_flash_init());
2021-12-16 17:42:19 +08:00
/* load Zigbee rcp platform config to initialization */
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 17:42:19 +08:00
}