From c1038de6e89bab145a6279adf0523f287be07cd8 Mon Sep 17 00:00:00 2001 From: Morten Priess Date: Fri, 27 Sep 2019 11:58:07 +0200 Subject: [PATCH] bluetooth: controller: Add vendor operations to TICKER_USER_ULL_HIGH_OPS Added to allow vendor specific increase of user operation capacity for ULL_HIGH, to support queuing additional ticker operations. Signed-off-by: Morten Priess --- subsys/bluetooth/controller/ll_sw/ull.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/subsys/bluetooth/controller/ll_sw/ull.c b/subsys/bluetooth/controller/ll_sw/ull.c index e013563fd18..ce9db658ee0 100644 --- a/subsys/bluetooth/controller/ll_sw/ull.c +++ b/subsys/bluetooth/controller/ll_sw/ull.c @@ -61,7 +61,12 @@ #else #define TICKER_USER_LLL_OPS (2 + 1) #endif /* CONFIG_BT_CTLR_LOW_LAT */ -#define TICKER_USER_ULL_HIGH_OPS (3 + 1) + +#if !defined(TICKER_USER_ULL_HIGH_VENDOR_OPS) +#define TICKER_USER_ULL_HIGH_VENDOR_OPS 0 +#endif /* TICKER_USER_ULL_HIGH_VENDOR_OPS */ + +#define TICKER_USER_ULL_HIGH_OPS (3 + TICKER_USER_ULL_HIGH_VENDOR_OPS + 1) #define TICKER_USER_ULL_LOW_OPS (1 + 1) #define TICKER_USER_THREAD_OPS (1 + 1)