1 /* 2 * Copyright (C) 2015-2020 Alibaba Group Holding Limited 3 */ 4 /*** 5 * besbt_cfg.h 6 */ 7 8 #ifndef BESBT_CFG_H 9 #define BESBT_CFG_H 10 #include <stdbool.h> 11 12 #ifdef __cplusplus 13 extern "C" { 14 #endif 15 16 struct besbt_cfg_t{ 17 bool sniff; 18 bool one_bring_two; 19 bool source_enable; 20 bool ble_mesh_enable; 21 }; 22 extern struct besbt_cfg_t besbt_cfg; 23 24 #ifdef __cplusplus 25 } 26 #endif 27 #endif /* BESBT_H */ 28