2020-08-03 16:28:58 +05:30
|
|
|
/*
|
|
|
|
* Copyright (c) 2020 Nordic Semiconductor ASA
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
int ull_sync_init(void);
|
|
|
|
int ull_sync_reset(void);
|
|
|
|
uint16_t ull_sync_handle_get(struct ll_sync_set *sync);
|
2020-11-09 16:31:01 +01:00
|
|
|
struct ll_sync_set *ull_sync_is_enabled_get(uint16_t handle);
|
2020-08-11 10:08:13 +05:30
|
|
|
void ull_sync_release(struct ll_sync_set *sync);
|
2020-08-11 10:27:12 +05:30
|
|
|
void ull_sync_setup(struct ll_scan_set *scan, struct ll_scan_aux_set *aux,
|
|
|
|
struct node_rx_hdr *node_rx, struct pdu_adv_sync_info *si);
|
2020-08-11 11:01:26 +05:30
|
|
|
void ull_sync_done(struct node_rx_event_done *done);
|
2021-08-25 20:50:53 +05:30
|
|
|
void ull_sync_chm_update(uint8_t sync_handle, uint8_t *acad, uint8_t acad_len);
|
2021-04-08 22:22:19 +02:00
|
|
|
int ull_sync_slot_update(struct ll_sync_set *sync, uint32_t slot_plus_us,
|
|
|
|
uint32_t slot_minus_us);
|
2021-08-17 18:18:04 +02:00
|
|
|
struct ll_sync_set *ull_sync_is_valid_get(struct ll_sync_set *sync);
|