forked from espressif/esp-idf
Nimble: Add APIs to handle vs HCI commands and events
This commit is contained in:
@@ -661,3 +661,9 @@ config BT_NIMBLE_BLE_GATT_BLOB_TRANSFER
|
|||||||
help
|
help
|
||||||
This option is used when data to be sent is more than 512 bytes. For peripheral role,
|
This option is used when data to be sent is more than 512 bytes. For peripheral role,
|
||||||
BT_NIMBLE_MSYS_1_BLOCK_COUNT needs to be increased according to the need.
|
BT_NIMBLE_MSYS_1_BLOCK_COUNT needs to be increased according to the need.
|
||||||
|
|
||||||
|
config BT_NIMBLE_VS_SUPPORT
|
||||||
|
bool "Enable support for VSC and VSE"
|
||||||
|
help
|
||||||
|
This option is used to enable support for sending Vendor Specific HCI commands and handling
|
||||||
|
Vendor Specific HCI Events.
|
||||||
|
Submodule components/bt/host/nimble/nimble updated: 326292d478...46268fd9c0
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
* SPDX-FileCopyrightText: 2015-2023 Espressif Systems (Shanghai) CO LTD
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: Apache-2.0
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
*/
|
*/
|
||||||
@@ -1681,4 +1681,11 @@
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef MYNEWT_VAL_BLE_HCI_VS
|
||||||
|
#define MYNEWT_VAL_BLE_HCI_VS CONFIG_BT_NIMBLE_VS_SUPPORT
|
||||||
|
#define MYNEWT_VAL_BLE_HCI_VS_OCF_OFFSET (0)
|
||||||
|
#else
|
||||||
|
#define MYNEWT_VAL_BLE_HCI_VS (0)
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user