mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
486b16712a
feat(openthread): support restoring vendor properties of rcp Closes TZ-567 See merge request espressif/esp-idf!32219
80 lines
2.2 KiB
C
80 lines
2.2 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2021-2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "sdkconfig.h"
|
|
/**
|
|
* @def OPENTHREAD_CONFIG_PLATFORM_INFO
|
|
*
|
|
* The platform-specific string to insert into the OpenThread version string.
|
|
*
|
|
*/
|
|
#define OPENTHREAD_CONFIG_PLATFORM_INFO CONFIG_OPENTHREAD_PLATFORM_INFO
|
|
|
|
/**
|
|
* @def PACKAGE_NAME
|
|
*
|
|
* Define to the full name of this package.
|
|
*
|
|
*/
|
|
#define PACKAGE_NAME CONFIG_OPENTHREAD_PACKAGE_NAME
|
|
|
|
/**
|
|
* @def OPENTHREAD_SPINEL_CONFIG_OPENTHREAD_MESSAGE_ENABLE
|
|
*
|
|
* Define 1 to enable feeding an OpenThread message to encoder/decoder.
|
|
*
|
|
*/
|
|
#ifndef OPENTHREAD_SPINEL_CONFIG_OPENTHREAD_MESSAGE_ENABLE
|
|
#define OPENTHREAD_SPINEL_CONFIG_OPENTHREAD_MESSAGE_ENABLE 0
|
|
#endif
|
|
|
|
/**
|
|
* @def OPENTHREAD_SPINEL_CONFIG_RCP_RESTORATION_MAX_COUNT
|
|
*
|
|
* Defines the max count of RCP failures allowed to be recovered.
|
|
* 0 means to disable RCP failure recovering.
|
|
*
|
|
*/
|
|
#ifndef OPENTHREAD_SPINEL_CONFIG_RCP_RESTORATION_MAX_COUNT
|
|
// TZ-567: Set OPENTHREAD_SPINEL_CONFIG_RCP_RESTORATION_MAX_COUNT to 3 after adding rcp failure notification mechanism
|
|
#define OPENTHREAD_SPINEL_CONFIG_RCP_RESTORATION_MAX_COUNT 3
|
|
#endif
|
|
|
|
#define OPENTHREAD_SPINEL_CONFIG_VENDOR_HOOK_ENABLE 1
|
|
|
|
/**
|
|
* @def OPENTHREAD_SPINEL_CONFIG_RCP_CUSTOM_RESTORATION
|
|
*
|
|
* Define 1 to call the custom RCP failure handler on RCP failure.
|
|
*
|
|
*/
|
|
#ifndef OPENTHREAD_SPINEL_CONFIG_RCP_CUSTOM_RESTORATION
|
|
#define OPENTHREAD_SPINEL_CONFIG_RCP_CUSTOM_RESTORATION 0
|
|
#endif
|
|
|
|
/**
|
|
* @def OPENTHREAD_LIB_SPINEL_RX_FRAME_BUFFER_SIZE
|
|
*
|
|
* Specifies the rx frame buffer size used by `SpinelInterface` in RCP host code. This is applicable/used when
|
|
* `RadioSpinel` platform is used.
|
|
*
|
|
*/
|
|
#define OPENTHREAD_LIB_SPINEL_RX_FRAME_BUFFER_SIZE CONFIG_OPENTHREAD_SPINEL_RX_FRAME_BUFFER_SIZE
|
|
|
|
/**
|
|
* @def OPENTHREAD_CONFIG_MAC_MAX_CSMA_BACKOFFS_DIRECT
|
|
*
|
|
* The maximum number of backoffs the CSMA-CA algorithm will attempt before declaring a channel access failure.
|
|
*
|
|
* Equivalent to macMaxCSMABackoffs in IEEE 802.15.4-2006, default value is 4.
|
|
*
|
|
*/
|
|
#ifndef OPENTHREAD_CONFIG_MAC_MAX_CSMA_BACKOFFS_DIRECT
|
|
#define OPENTHREAD_CONFIG_MAC_MAX_CSMA_BACKOFFS_DIRECT CONFIG_OPENTHREAD_MAC_MAX_CSMA_BACKOFFS_DIRECT
|
|
#endif
|