Skip to content

Commit

Permalink
bluetooth: controller: Add vendor operations to TICKER_USER_ULL_HIGH_OPS
Browse files Browse the repository at this point in the history
Added to allow vendor specific increase of user operation capacity for
ULL_HIGH, to support queuing additional ticker operations.

Signed-off-by: Morten Priess <[email protected]>
  • Loading branch information
mtpr-ot authored and aescolar committed Sep 30, 2019
1 parent cd07fe9 commit c1038de
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion subsys/bluetooth/controller/ll_sw/ull.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit c1038de

Please sign in to comment.