blob: 7da6036fca9f841e8dd0574d089a9bfac25a5e8a [file] [log] [blame]
/******************************************************************************
* @file ll_scan.h
*
* @brief for TLSR chips
*
* @author public@telink-semi.com;
* @date Sep. 30, 2010
*
* @attention
*
* Copyright (C) 2019-2020 Telink Semiconductor (Shanghai) Co., Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*****************************************************************************/
#ifndef LL_SCAN_H_
#define LL_SCAN_H_
/**
* @brief for user to initialize scanning module
* @param none
* @return none
*/
#if (MCU_CORE_TYPE == MCU_CORE_9518)
void blc_ll_initScanning_module(void);
#elif (MCU_CORE_TYPE == MCU_CORE_825x || MCU_CORE_TYPE == MCU_CORE_827x)
void blc_ll_initScanning_module(u8 *public_adr);
#endif
/**
* @brief This function is used to set the scan parameters
* @param[in] scan_type - passive Scanning or active scanning.
* @param[in] scan_interval - time interval from when the Controller started its last LE scan until it begins the subsequent LE scan
* @param[in] scan_window - The duration of the LE scan.
* @param[in] ownAddrType - Own_Address_Type
* @param[in] scanFilterPolicy
* @return Status - 0x00: command succeeded; 0x01-0xFF: command failed
*/
ble_sts_t blc_ll_setScanParameter (scan_type_t scan_type, u16 scan_interval, u16 scan_window, own_addr_type_t ownAddrType, scan_fp_type_t scanFilter_policy);
/**
* @brief enable or disable legacy scanning.
* @param[in] scan_enable
* @param[in] filter_duplicate - controls whether the Link Layer should filter out
* duplicate advertising reports (Filtering_Enabled) to the Host,
* @return Status - 0x00: command succeeded; 0x01-0xFF: command failed
*/
ble_sts_t blc_ll_setScanEnable (scan_en_t scan_enable, dupFilter_en_t filter_duplicate);
/**
* @brief This function is used to add scan state in advertise state of slave role.
* @param[in] none.
* @return Status - 0x00: BLE success; 0x01-0xFF: fail
*/
ble_sts_t blc_ll_addScanningInAdvState(void);
/**
* @brief This function is used to remove scan state in advertise state of slave role.
* @param[in] none.
* @return Status - 0x00: BLE success; 0x01-0xFF: fail
*/
ble_sts_t blc_ll_removeScanningFromAdvState(void);
/**
* @brief This function is used to add scan state in connect state of slave role.
* @param[in] none.
* @return Status - 0x00: BLE success; 0x01-0xFF: fail
*/
ble_sts_t blc_ll_addScanningInConnSlaveRole(void);
/**
* @brief This function is used to remove scan state in connect state of slave role.
* @param[in] none.
* @return Status - 0x00: BLE success; 0x01-0xFF: fail
*/
ble_sts_t blc_ll_removeScanningFromConnSLaveRole(void);
#endif /* LL_SCAN_H_ */