CC2541常用API
连接
定义广播数据
GAPRole_SetParameter(GAPROLE_ADVERT_DATA,…);
自定义扫描响应数据
GAPRole_SetParameter(GAPROLE_SCAN_RSP_DATA,…);
密码管理回调
ProcessPasscodeCB();
状态管理回调
peripheralStateNotificationCB();
通信控制
添加GATT服务
GATTServApp_RegisterService();
读回调
simpleProfile_ReadAttrCB();//app读设备时,调用的回调
写回调
simpleProfile_WriteAttrCB();//app写设备时,调用的回调
属性值设置和获取
SimpleProfile_SetParameter();
SimpleProfile_GetParameter();
主动传输
GATT_Notification();
GATT_Indication();