blob: 637bcda18f6012ebed408337e8411930be8bfa93 [file] [log] [blame]
/*
* Copyright (c) 2020 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
/* Enables CTE transmission according to provided configuration */
void lll_df_conf_cte_tx_enable(uint8_t type, uint8_t length,
uint8_t ant_num, uint8_t *ant_ids);
/* Disables CTE transmission */
void lll_df_conf_cte_tx_disable(void);
/* Allocate memory for new DF sync configuration. It will always return the same
* pointer until buffer is swapped by lll_df_sync_cfg_latest_get operation.
*/
struct lll_df_sync_cfg *lll_df_sync_cfg_alloc(struct lll_df_sync *df_cfg,
uint8_t *idx);
/* Returns pointer to last allocated DF sync configuration. If it is called before
* lll_df_sync_cfg_alloc it will return pointer to memory that was recently
* enqueued.
*/
static inline struct lll_df_sync_cfg *lll_df_sync_cfg_peek(struct lll_df_sync *df_cfg)
{
return &df_cfg->cfg[df_cfg->last];
}
/* Enqueue new DF sync configuration data. */
static inline void lll_df_sync_cfg_enqueue(struct lll_df_sync *df_cfg, uint8_t idx)
{
df_cfg->last = idx;
}
/* Get latest DF sync configuration data. Latest configuration data are the one
* that were enqueued by last lll_df_sync_cfg_enqueue call.
*/
struct lll_df_sync_cfg *lll_df_sync_cfg_latest_get(struct lll_df_sync *df_cfg,
uint8_t *is_modified);
/* Get current DF sync configuration data. Current configuration data
* are the one that are available after last buffer swap done by call
* lll_df_sync_cfg_latest_get.
*/
static inline struct lll_df_sync_cfg *lll_df_sync_cfg_curr_get(struct lll_df_sync *df_cfg)
{
return &df_cfg->cfg[df_cfg->first];
}
/* Return information if DF sync configuration data were modified since last
* call to lll_df_sync_cfg_latest_get.
*/
static inline uint8_t lll_df_sync_cfg_is_modified(struct lll_df_sync *df_cfg)
{
return df_cfg->first != df_cfg->last;
}
/* Enables CTE reception according to provided configuration */
void lll_df_conf_cte_rx_enable(uint8_t slot_duration, uint8_t ant_num,
uint8_t *ant_ids);