This is a squash merge of commits introducing the new split Upper Link Layer and Lower Link Layer architecture of the Bluetooth Low Energy controller. This introduces a new, improved Link Layer based on the concept of split responsibilities; The Upper Link Layer (ULL) is in charge of control procedures, inter-event scheduling and overall role management. The code for the ULL is shared among all hardware implementations. The Lower Link Layer (LLL) is responsible for the intra-event scheduling and vendor specific radio hardware access. The communication between ULL and LLL is achieved through a set of FIFOs that contain both control and data packets. Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no> Signed-off-by: Alberto Escolar Piedras <alpi@oticon.com> Signed-off-by: Wolfgang Puffitsch <wopu@oticon.com> Signed-off-by: Morten Priess <mtpr@oticon.com>
17 lines
566 B
C
17 lines
566 B
C
/*
|
|
* Copyright (c) 2017-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);
|