File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
subsys/bluetooth/controller/ll_sw/nordic/lll Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,15 @@ int lll_adv_init(void)
114114{
115115 int err ;
116116
117+ #if defined(CONFIG_BT_CTLR_ADV_EXT )
118+ #if (BT_CTLR_ADV_AUX_SET > 0 )
119+ err = lll_adv_aux_init ();
120+ if (err ) {
121+ return err ;
122+ }
123+ #endif /* BT_CTLR_ADV_AUX_SET > 0 */
124+ #endif /* CONFIG_BT_CTLR_ADV_EXT */
125+
117126 err = init_reset ();
118127 if (err ) {
119128 return err ;
@@ -126,6 +135,15 @@ int lll_adv_reset(void)
126135{
127136 int err ;
128137
138+ #if defined(CONFIG_BT_CTLR_ADV_EXT )
139+ #if (BT_CTLR_ADV_AUX_SET > 0 )
140+ err = lll_adv_aux_reset ();
141+ if (err ) {
142+ return err ;
143+ }
144+ #endif /* BT_CTLR_ADV_AUX_SET > 0 */
145+ #endif /* CONFIG_BT_CTLR_ADV_EXT */
146+
129147 err = init_reset ();
130148 if (err ) {
131149 return err ;
You can’t perform that action at this time.
0 commit comments