Fix missing reset of sync create association with scan context when associated with both 1M and Coded PHY contexts, and sync create cancel is called. Signed-off-by: Vinayak Kariappa Chettimada <vich@nordicsemi.no>
23 lines
1.1 KiB
C
23 lines
1.1 KiB
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);
|
|
struct ll_sync_set *ull_sync_is_enabled_get(uint16_t handle);
|
|
void ull_sync_release(struct ll_sync_set *sync);
|
|
void ull_sync_setup_addr_check(struct ll_scan_set *scan, uint8_t addr_type,
|
|
uint8_t *addr, uint8_t rl_idx);
|
|
bool ull_sync_setup_sid_match(struct ll_scan_set *scan, uint8_t sid);
|
|
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_setup_reset(struct ll_scan_set *scan);
|
|
void ull_sync_established_report(memq_link_t *link, struct node_rx_hdr *rx);
|
|
void ull_sync_done(struct node_rx_event_done *done);
|
|
void ull_sync_chm_update(uint8_t sync_handle, uint8_t *acad, uint8_t acad_len);
|
|
int ull_sync_slot_update(struct ll_sync_set *sync, uint32_t slot_plus_us,
|
|
uint32_t slot_minus_us);
|
|
struct ll_sync_set *ull_sync_is_valid_get(struct ll_sync_set *sync);
|