/****************************************************************************** * Copyright (c) 2022 Telink Semiconductor (Shanghai) Co., Ltd. ("TELINK") * All rights reserved. * * 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 ADV_H_ #define ADV_H_ /** * @brief Definition for ADV maximum random delay time */ typedef enum{ MAX_DELAY_10MS = 512, MAX_DELAY_5MS = 256, MAX_DELAY_2P5MS = 128, MAX_DELAY_0MS = 0, }adv_max_delay_t; /** * @brief Set Advertising Interval maximum random delay time. If not set, default value is 10mS according to BLE Spec. * This API is mainly used for debug, to control adv_interval, this value will recover to 10mS if stack timing is limited * //notice that: this API must used before API "blc_ll_setAdvParam" TODO SiHui * @param max_delay - select one from enumeration variable "adv_max_delay_t" * * @return None */ void blc_ll_setMaxAdvDelay_for_AdvEvent(adv_max_delay_t max_delay); #endif /* ADV_H_ */