52 lines
1.2 KiB
C
52 lines
1.2 KiB
C
/*********************************************************************************************
|
|
* Filename : btcontroller_config.h
|
|
|
|
* Description : 优化代码需要,libs 依赖app 定义变量,由app 定义变量值决定libs 优化
|
|
|
|
* Author : Bingquan
|
|
|
|
* Email : bingquan_cai@zh-jieli.com
|
|
|
|
* Last modifiled : 2018-12-19 16:10
|
|
|
|
* Copyright:(c)JIELI 2011-2017 @ , All Rights Reserved.
|
|
*********************************************************************************************/
|
|
#ifndef _BTCONTROLLER_CONFIG_H_
|
|
#define _BTCONTROLLER_CONFIG_H_
|
|
|
|
#include "btcontroller_modules.h"
|
|
|
|
#include "ble/ll_config.h"
|
|
|
|
// #define CONFIG_LE_FEATURES \
|
|
(\
|
|
LE_ENCRYPTION | \
|
|
LE_CORE_V50_FEATURES \
|
|
)
|
|
|
|
#define CONFIG_LE_FEATURES 0//(LE_ENCRYPTION)
|
|
|
|
// #define CONFIG_LE_ROLES (LE_ADV|LE_SCAN|LE_INIT|LE_SLAVE|LE_MASTER)
|
|
// #define CONFIG_LE_ROLES (LE_ADV|LE_SCAN)
|
|
#define CONFIG_LE_ROLES (LE_ADV)
|
|
|
|
#include "classic/lmp_config.h"
|
|
|
|
#define CONFIG_CL_FEATURES
|
|
|
|
#define CONFIG_CL_EX_FEATURES
|
|
|
|
|
|
#define TWS_BLE_ESCO_CONNECT //通话过程进行连接使能
|
|
|
|
|
|
/*
|
|
*-------------------
|
|
* 蓝牙基带运行的模式
|
|
*/
|
|
|
|
|
|
|
|
|
|
#endif
|