1 /* 2 * Copyright (c) 2021 Chipsea Technologies (Shenzhen) Corp., Ltd. All rights reserved. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 #ifndef CSADPMGR 16 #define CSADPMGR 17 /*chipsea_ohos proguard begin*/ 18 #include "cs_proguard.h" 19 /*chipsea_ohos proguard end*/ 20 #include "bt_types_def.h" 21 #include "cs_host_cfg.h" 22 23 void cs_stack_init_ble_only(cs_host_cfg_t cfg); 24 BOOL cs_adp_stack_config_ble_only(void); 25 void cs_stack_loop_ble_only(void); 26 void cs_adp_send_hci_data_direct_ble_only(const uint8_t *buff,uint8_t len); 27 void cs_adp_send_generate_key_ble_only(void); 28 void cs_adp_set_lp_level_ble_only(uint8_t level); 29 void cs_adp_ble_deinit(void); 30 void cs_adp_free_stack_memory_ble_only(void); 31 void cs_adp_rw_timer_notify(void); 32 #endif 33