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
|
|
|
*/
|
2022-10-26 02:40:02 -04:00
|
|
|
#include "esp_zigbee_core.h"
|
2021-12-16 04:42:19 -05:00
|
|
|
|
2022-09-22 02:51:30 -04:00
|
|
|
#define ESP_ZB_DEFAULT_RADIO_CONFIG() \
|
2021-12-16 04:42:19 -05:00
|
|
|
{ \
|
|
|
|
.radio_mode = RADIO_MODE_NATIVE, \
|
|
|
|
}
|
|
|
|
|
2022-09-22 02:51:30 -04:00
|
|
|
#define ESP_ZB_DEFAULT_HOST_CONFIG() \
|
2021-12-16 04:42:19 -05:00
|
|
|
{ \
|
|
|
|
.host_connection_mode = HOST_CONNECTION_MODE_RCP_UART, \
|
|
|
|
.host_uart_config = { \
|
|
|
|
.port = 0, \
|
|
|
|
.uart_config = \
|
|
|
|
{ \
|
|
|
|
.baud_rate = 115200, \
|
|
|
|
.data_bits = UART_DATA_8_BITS, \
|
|
|
|
.parity = UART_PARITY_DISABLE, \
|
|
|
|
.stop_bits = UART_STOP_BITS_1, \
|
|
|
|
.flow_ctrl = UART_HW_FLOWCTRL_DISABLE, \
|
|
|
|
.rx_flow_ctrl_thresh = 0, \
|
2022-04-29 00:10:05 -04:00
|
|
|
.source_clk = UART_SCLK_DEFAULT, \
|
2021-12-16 04:42:19 -05:00
|
|
|
}, \
|
|
|
|
.rx_pin = UART_PIN_NO_CHANGE, \
|
|
|
|
.tx_pin = UART_PIN_NO_CHANGE, \
|
|
|
|
}, \
|
|
|
|
}
|