mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-20 08:46:51 +00:00
Added implementation to handle Periodic Advertising clock drift in the created Periodic Advertising Sync instance. Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
14 lines
447 B
C
14 lines
447 B
C
/*
|
|
* 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);
|
|
void ull_sync_release(struct ll_sync_set *sync);
|
|
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);
|
|
void ull_sync_done(struct node_rx_event_done *done);
|