Preparation to introduce the Upper Link Layer (ULL) and Lower Link Layer (LLL) split architecture. - Move SoC dependent HAL to vendor specific folder. - Preparation to split data structures into ULL and LLL types. - Added more role and state conditional compilations. - Added some work-in-progress implementation of advertising extensions, will be used as inspiration in the new split architecture work. Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
16 lines
561 B
C
16 lines
561 B
C
/*
|
|
* Copyright (c) 2018 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
u8_t ll_adv_aux_random_addr_set(u8_t handle, u8_t *addr);
|
|
u8_t *ll_adv_aux_random_addr_get(u8_t handle, u8_t *addr);
|
|
u8_t ll_adv_aux_ad_data_set(u8_t handle, u8_t op, u8_t frag_pref, u8_t len,
|
|
u8_t *data);
|
|
u8_t ll_adv_aux_sr_data_set(u8_t handle, u8_t op, u8_t frag_pref, u8_t len,
|
|
u8_t *data);
|
|
u16_t ll_adv_aux_max_data_length_get(void);
|
|
u8_t ll_adv_aux_set_count_get(void);
|
|
u8_t ll_adv_aux_set_remove(u8_t handle);
|
|
u8_t ll_adv_aux_set_clear(void);
|