Merge branch 'optimize/bt_make_alarm_num_configurable_v5.1' into 'release/v5.1'

feat(ble_mesh): Make alarm number configurable (v5.1)

See merge request espressif/esp-idf!30789
This commit is contained in:
Island 2024-06-05 10:43:49 +08:00
commit 445811d412
4 changed files with 23 additions and 1 deletions

View File

@ -106,6 +106,12 @@ menu "Bluetooth"
This option is to configure the buffer size of the hci adv report cache in hci debug mode. This option is to configure the buffer size of the hci adv report cache in hci debug mode.
This is a ring buffer, the new data will overwrite the oldest data if the buffer is full. This is a ring buffer, the new data will overwrite the oldest data if the buffer is full.
menu "Common Options"
visible if (BT_BLUEDROID_ENABLED || BT_NIMBLE_ENABLED)
source "$IDF_PATH/components/bt/common/Kconfig.in"
endmenu
endmenu endmenu
menuconfig BLE_MESH menuconfig BLE_MESH

View File

@ -0,0 +1,6 @@
config BT_ALARM_MAX_NUM
int "Maximum number of Bluetooth alarms"
default 50
help
This option decides the maximum number of alarms which
could be used by Bluetooth host.

View File

@ -44,6 +44,15 @@
#define UC_BTC_TASK_STACK_SIZE 4096 #define UC_BTC_TASK_STACK_SIZE 4096
#endif #endif
/**********************************************************
* Alarm reference
**********************************************************/
#ifdef CONFIG_BT_ALARM_MAX_NUM
#define UC_ALARM_MAX_NUM CONFIG_BT_ALARM_MAX_NUM
#else
#define UC_ALARM_MAX_NUM 50
#endif
/********************************************************** /**********************************************************
* Trace reference * Trace reference
**********************************************************/ **********************************************************/

View File

@ -21,6 +21,7 @@
#include <stdint.h> #include <stdint.h>
#include "esp_timer.h" #include "esp_timer.h"
#include "bt_user_config.h"
typedef struct alarm_t osi_alarm_t; typedef struct alarm_t osi_alarm_t;
typedef uint64_t period_ms_t; typedef uint64_t period_ms_t;
@ -33,7 +34,7 @@ typedef enum {
OSI_ALARM_ERR_INVALID_STATE = -3, OSI_ALARM_ERR_INVALID_STATE = -3,
} osi_alarm_err_t; } osi_alarm_err_t;
#define ALARM_CBS_NUM 50 #define ALARM_CBS_NUM UC_ALARM_MAX_NUM
#define ALARM_ID_BASE 1000 #define ALARM_ID_BASE 1000
int osi_alarm_create_mux(void); int osi_alarm_create_mux(void);