Periodic advertising train scanner implemented in lll_scan_aux adds lots of branches that cannot be compiled out with periodic advertising sync disabled. This commit moves sync parts of the code from lll_scan_aux to lll_sync. Signed-off-by: Andrzej Kaczmarek <andrzej.kaczmarek@codecoup.pl>
13 lines
363 B
C
13 lines
363 B
C
/*
|
|
* Copyright (c) 2020 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
int lll_scan_aux_init(void);
|
|
int lll_scan_aux_reset(void);
|
|
void lll_scan_aux_prepare(void *param);
|
|
|
|
extern uint8_t ull_scan_aux_lll_handle_get(struct lll_scan_aux *lll);
|
|
extern void *ull_scan_aux_lll_parent_get(struct lll_scan_aux *lll,
|
|
uint8_t *is_lll_scan);
|