mirror of
https://github.com/0xFEEDC0DE64/arduino-esp32.git
synced 2025-07-02 13:30:59 +02:00
Update IDF libs to 9314bf0
This commit is contained in:
@ -577,7 +577,11 @@
|
||||
|
||||
/* The number of security records for peer devices. 100 AS Default*/
|
||||
#ifndef BTM_SEC_MAX_DEVICE_RECORDS
|
||||
#define BTM_SEC_MAX_DEVICE_RECORDS 8 // 100
|
||||
#if SMP_INCLUDED == TRUE
|
||||
#define BTM_SEC_MAX_DEVICE_RECORDS 15 // 100
|
||||
#else
|
||||
#define BTM_SEC_MAX_DEVICE_RECORDS 8
|
||||
#endif /* SMP_INCLUDED == TRUE */
|
||||
#endif
|
||||
|
||||
/* The number of security records for services. 32 AS Default*/
|
||||
@ -729,7 +733,7 @@
|
||||
#if (CLASSIC_BT_INCLUDED == TRUE)
|
||||
#define MAX_L2CAP_CHANNELS 8
|
||||
#else
|
||||
#define MAX_L2CAP_CHANNELS 2 //Not support to create l2cap channels in the BLE only mode in this bluedroid version(6.0)
|
||||
#define MAX_L2CAP_CHANNELS MAX_ACL_CONNECTIONS //This is used in the BLE client when start connected with the peer device
|
||||
#endif ///CLASSIC_BT_INCLUDED == TRUE
|
||||
#endif
|
||||
|
||||
@ -953,6 +957,13 @@
|
||||
#define BLE_LLT_INCLUDED TRUE
|
||||
#endif
|
||||
|
||||
/* Added this marco to fixed the android 7.0 will lead to update connection parameters
|
||||
collision when the slave sent the HCI_BLE_UPD_LL_CONN_PARAMS comment to the controller
|
||||
request the master to update connection parameters directly. */
|
||||
#ifndef BLE_SLAVE_UPD_CONN_PARAMS
|
||||
#define BLE_SLAVE_UPD_CONN_PARAMS FALSE
|
||||
#endif
|
||||
|
||||
#ifndef ATT_INCLUDED
|
||||
#define ATT_INCLUDED TRUE
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user