BLE芯片DA145XX系列:配置SDK支持多连接

Dialog的DA145XX系列BLE芯片可以配置允许多连接,需要修改SDK,下面主要说明如何实现多连接配置。

1、新增宏定义:__EXCLUDE_ROM_APP_TASK__
用于取消ROM里关于APP部分函数的调用,改为使用自定义的函数


2、部分宏定义(DA1458x_config_basic.h文件):

修改宏定义,配置支持的连接数,1453X系列最多支持3个连接:

/****************************************************************************************************************/
/* Determines maximum concurrent connections supported by application. It configures the heap memory allocated  */
/* to service multiple connections. It is used for GAP central role applications. For GAP peripheral role it    */
/* should be set to 1 for optimizing memory utilization.                                                        */
/*      - MAX value for DA14535: 3                                                                              */
/****************************************************************************************************************/
#define CFG_MAX_CONNECTIONS     (2)

新增宏定义:

/****************************************************************************************************************/
/* Enable multiple connections configuration                                                                    */
/****************************************************************************************************************/
#if CFG_MAX_CONNECTIONS > (1)#define CFG_ENABLE_MULTIPLE_CONN
#endif

3、app_task.h里修改宏定义:

/// Number of APP Task Instances
#ifndef CFG_ENABLE_MULTIPLE_CONN
#define APP_IDX_MAX      (1)
#else
#define APP_IDX_MAX      (APP_EASY_MAX_ACTIVE_CONNECTION)
#endif

4、app.h里修改宏定义:

/// Max connections supported by application task
#ifdef CFG_ENABLE_MULTIPLE_CONN
#define APP_EASY_MAX_ACTIVE_CONNECTION      (BLE_CONNECTION_MAX)
#else
#define APP_EASY_MAX_ACTIVE_CONNECTION      (1)
#endif


5、APP_task.c 修改部分函数:使用__WEAK关键字,用于在其它区域覆盖该函数,主要更改连接和断连两个回调函数:
gapc_disconnect_ind_handler
gapc_connection_req_ind_handler

/******************************************************************************************* @brief Handles connection complete event from the GAP. Will enable profile.* @param[in] msgid     Id of the message received.* @param[in] param     Pointer to the parameters of the message.* @param[in] dest_id   ID of the receiving task instance (TASK_GAP).* @param[in] src_id    ID of the sending task instance.* @return If the message was consumed or not.*****************************************************************************************/
#ifdef CFG_ENABLE_MULTIPLE_CONN
__WEAK int gapc_connection_req_ind_handler(ke_msg_id_t const msgid,struct gapc_connection_req_ind const *param,ke_task_id_t const dest_id,ke_task_id_t const src_id)
#else
static int gapc_connection_req_ind_handler(ke_msg_id_t const msgid,struct gapc_connection_req_ind const *param,ke_task_id_t const dest_id,ke_task_id_t const src_id)
#endif
{// Connection Indexif (ke_state_get(dest_id) == APP_CONNECTABLE){uint8_t conidx = KE_IDX_GET(src_id);ASSERT_WARNING(conidx < APP_EASY_MAX_ACTIVE_CONNECTION);app_env[conidx].conidx = conidx;if (conidx != GAP_INVALID_CONIDX){app_env[conidx].connection_active = true;ke_state_set(TASK_APP, APP_CONNECTED);// Retrieve the connection info from the parametersapp_env[conidx].conhdl = param->conhdl;app_env[conidx].peer_addr_type = param->peer_addr_type;memcpy(app_env[conidx].peer_addr.addr, param->peer_addr.addr, BD_ADDR_LEN);#if (BLE_APP_SEC)// send connection confirmationapp_easy_gap_confirm(conidx, (enum gap_auth) app_sec_env[conidx].auth, 1);#elseapp_easy_gap_confirm(conidx, GAP_AUTH_REQ_NO_MITM_NO_BOND, 1);#endif}CALLBACK_ARGS_2(user_app_callbacks.app_on_connection, conidx, param)}else{// APP_CONNECTABLE state is used to wait the GAP_LE_CREATE_CONN_REQ_CMP_EVT messageASSERT_ERROR(0);}return (KE_MSG_CONSUMED);
}

/******************************************************************************************* @brief Handles disconnection complete event from the GAP.* @param[in] msgid     Id of the message received.* @param[in] param     Pointer to the parameters of the message.* @param[in] dest_id   ID of the receiving task instance (TASK_GAP).* @param[in] src_id    ID of the sending task instance.* @return If the message was consumed or not.*****************************************************************************************/
#ifdef CFG_ENABLE_MULTIPLE_CONN
__WEAK int gapc_disconnect_ind_handler(ke_msg_id_t const msgid,struct gapc_disconnect_ind const *param,ke_task_id_t const dest_id,ke_task_id_t const src_id)
#else
static int gapc_disconnect_ind_handler(ke_msg_id_t const msgid,struct gapc_disconnect_ind const *param,ke_task_id_t const dest_id,ke_task_id_t const src_id)
#endif
{uint8_t state = ke_state_get(dest_id);uint8_t conidx = KE_IDX_GET(src_id);if (state == APP_CONNECTED){app_env[conidx].conidx = GAP_INVALID_CONIDX;app_env[conidx].connection_active = false;CALLBACK_ARGS_1(user_app_callbacks.app_on_disconnect, param)}else{// We are not in Connected StateASSERT_ERROR(0);}return (KE_MSG_CONSUMED);
}

6、app.c里修改部分函数:主要是根据CFG_ENABLE_MULTIPLE_CONN宏定义是否开启,来重新配置函数app_db_init_start和app_db_init_next

/******************************************************************************************* @brief Initialize the database for all the included profiles.* @return true if succeeded, else false*****************************************************************************************/
#if (!defined (__DA14531__) || defined (__EXCLUDE_ROM_APP_TASK__)) && !defined (CFG_ENABLE_MULTIPLE_CONN)
static bool app_db_init_next(void)
#else
bool app_db_init_next(void)
#endif
{static uint8_t i __SECTION_ZERO("retention_mem_area0"); //@RETENTION MEMORY;static uint8_t k __SECTION_ZERO("retention_mem_area0"); //@RETENTION MEMORY;// initialise the databases for all the included profileswhile(user_prf_funcs[k].task_id != TASK_ID_INVALID){if (user_prf_funcs[k].db_create_func != NULL){user_prf_funcs[k++].db_create_func();return false;}else k++;}// initialise the databases for all the included profileswhile(prf_funcs[i].task_id != TASK_ID_INVALID){if ((prf_funcs[i].db_create_func != NULL)&& (!app_task_in_user_app(prf_funcs[i].task_id)))    //case that the this task has an entry in the user_prf as well{prf_funcs[i++].db_create_func();return false;}else i++;}#if (BLE_CUSTOM_SERVER){static uint8_t j __SECTION_ZERO("retention_mem_area0"); //@RETENTION MEMORY;while(cust_prf_funcs[j].task_id != TASK_ID_INVALID){if(cust_prf_funcs[j].db_create_func != NULL){cust_prf_funcs[j++].db_create_func();return false;}else j++;}j = 0;}
#endifk = 0;i = 0;return true;
}
#if !defined (__DA14531__) || defined (__EXCLUDE_ROM_APP_TASK__)
#if !defined (CFG_ENABLE_MULTIPLE_CONN)
bool app_db_init_start(void)
{// Indicate if more services need to be added in the databasebool end_db_create;// We are now in Initialization Stateke_state_set(TASK_APP, APP_DB_INIT);end_db_create = app_db_init_next();return end_db_create;
}
#endif

7、在工程自定义的其它文件中重新实现前面在ROM里不支持多连接的函数,使其支持多连接:

/******************************************************************************************* @brief Handles connection complete event from the GAP. Will enable profile.*          Custom function for multi-connection peripheral* @param[in] msgid     Id of the message received.* @param[in] param     Pointer to the parameters of the message.* @param[in] dest_id   ID of the receiving task instance (TASK_GAP).* @param[in] src_id    ID of the sending task instance.* @return If the message was consumed or not.*****************************************************************************************/
int gapc_connection_req_ind_handler(ke_msg_id_t const msgid,struct gapc_connection_req_ind const *param,ke_task_id_t const dest_id,  // dest_id -> TASK_APPke_task_id_t const src_id)   // src_id -> TASK_GAPC
{uint8_t conidx = KE_IDX_GET(src_id);uint8_t current_state = ke_state_get(KE_BUILD_ID(KE_TYPE_GET(dest_id), conidx));// Connection Indexif (current_state == APP_CONNECTABLE){ASSERT_WARNING(conidx < APP_EASY_MAX_ACTIVE_CONNECTION);app_env[conidx].conidx = conidx;if (conidx != GAP_INVALID_CONIDX){app_env[conidx].connection_active = true;ke_state_set(KE_BUILD_ID(KE_TYPE_GET(dest_id), conidx), APP_CONNECTED); //SUPBLE_6975// Retrieve the connection info from the parametersapp_env[conidx].conhdl = param->conhdl;app_env[conidx].peer_addr_type = param->peer_addr_type;memcpy(app_env[conidx].peer_addr.addr, param->peer_addr.addr, BD_ADDR_LEN);#if (BLE_APP_SEC)// send connection confirmationapp_easy_gap_confirm(conidx, (enum gap_auth) app_sec_env[conidx].auth, 1);#elseapp_easy_gap_confirm(conidx, GAP_AUTH_REQ_NO_MITM_NO_BOND, 1);#endif}CALLBACK_ARGS_2(user_app_callbacks.app_on_connection, conidx, param)}else{// APP_CONNECTABLE state is used to wait the GAP_LE_CREATE_CONN_REQ_CMP_EVT messageASSERT_ERROR(0);}return (KE_MSG_CONSUMED);
}/******************************************************************************************* @brief Handles disconnection complete event from the GAP. Custom function for the *          multiconnection.* @param[in] msgid     Id of the message received.* @param[in] param     Pointer to the parameters of the message.* @param[in] dest_id   ID of the receiving task instance (TASK_GAP).* @param[in] src_id    ID of the sending task instance.* @return If the message was consumed or not.*****************************************************************************************/
int gapc_disconnect_ind_handler(ke_msg_id_t const msgid,struct gapc_disconnect_ind const *param,ke_task_id_t const dest_id,ke_task_id_t const src_id)
{uint8_t conidx = KE_IDX_GET(src_id);uint8_t state = ke_state_get(KE_BUILD_ID(KE_TYPE_GET(dest_id), conidx));if (state == APP_CONNECTED){app_env[conidx].conidx = GAP_INVALID_CONIDX;app_env[conidx].connection_active = false;ke_state_set(KE_BUILD_ID(KE_TYPE_GET(dest_id), conidx), APP_CONNECTABLE);CALLBACK_ARGS_1(user_app_callbacks.app_on_disconnect, param);}else{// We are not in Connected StateASSERT_ERROR(0);}return (KE_MSG_CONSUMED);
}/******************************************************************************************* @brief Start placing services in the database.* @return true if succeeded, else false*****************************************************************************************/
bool app_db_init_start(void)
{// Indicate if more services need to be added in the databasebool end_db_create;// We are now in Initialization Statefor(uint8_t idx = 0; idx < APP_IDX_MAX; idx++)ke_state_set(KE_BUILD_ID(TASK_APP, idx), APP_DB_INIT);end_db_create = app_db_init_next();return end_db_create;
}

8、修改da145xx_symbols.txt文件(在sdk\common_project_files\misc目录下),去除app.c、app_entry_point.c、app_task.c部分函数引用
原先为:

; app.c (controlled by __EXCLUDE_ROM_APP_TASK__)
0x07f22b35 T app_db_init_start
0x07f22b51 T app_db_init
0x07f22b5d T app_easy_gap_confirm
0x07f22b89 T append_device_name
0x07f22bad T app_easy_gap_update_adv_data
0x07f22bf5 T active_conidx_to_conhdl
0x07f22c19 T active_conhdl_to_conidx
0x07f22c55 T app_easy_gap_disconnect
0x07f22c91 T app_easy_gap_advertise_stop
0x07f22cad T app_timer_set
0x07f22cc9 T app_easy_gap_set_data_packet_length
0x07f22d09 T get_user_prf_srv_perm
0x07f22d31 T app_set_prf_srv_perm
0x07f22d61 T prf_init_srv_perm
0x07f22d85 T app_gattc_svc_changed_cmd_send
0x07f231fd T app_gap_process_handler; app_entry_point.c (controlled by __EXCLUDE_ROM_APP_TASK__)
0x07f23219 T app_entry_point_handler
0x07f23261 T app_std_process_event; app_task.c (controlled by __EXCLUDE_ROM_APP_TASK__)
0x07f23b98 D app_default_handler

更改为:

; app.c (controlled by __EXCLUDE_ROM_APP_TASK__)
0x07f23515 T append_device_name                              
;0x07f23715 T app_gattc_svc_changed_cmd_send ; app_entry_point.c (controlled by __EXCLUDE_ROM_APP_TASK__)
;0x07f23219 T app_entry_point_handler
;0x07f23261 T app_std_process_event; app_task.c (controlled by __EXCLUDE_ROM_APP_TASK__)
;0x07f23b98 D app_default_handler

 至此修改完毕。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/diannao/22377.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

大量单号中如何分析出异常单号

什么情况下单号算异常单号呢&#xff0c;首先根据单号物流信息过程轨迹判断哦&#xff0c;比如某个单号已显示快递公司已揽收了&#xff0c;超过24或36、48甚至更长时间也没有看到走件信息哦&#xff0c;一般这类单号也叫揽收后无走信息&#xff0c;这类单号就只能一条揽收信息…

【官方文档解读】torch.jit.script 的使用,并附上官方文档中的示例代码

由 OpenMMLab 的部署教程 所述&#xff0c;对于模型中存在有控制条件的&#xff08;如 if&#xff0c;for 等&#xff09;&#xff0c;需要用 torch.jit.script 而非采样默认的 torch.jit.trace 方法。本文则详细介绍了下官方文档中对 torch.jit.script 的解释和示例代码。 to…

EcoVadis审核方法是什么符合EcoVadis规范的文件清单

EcoVadis审核方法是参照全球契约社会责任国际标准进行&#xff0c;包括环境、劳工及人权、商业道德、可持续采购等四大主题又分:能源消耗及温室气体排放、水环境管理、生态环境与物种多样性保护、局部环境污染、原材料及化学品使用(含废弃物)、产品使用、产品生命末期、消费者健…

C++基础编程100题-003 OpenJudge-1.1-05 输出保留12位小数的浮点数

更多资源请关注纽扣编程微信公众号 http://noi.openjudge.cn/ch0101/05/ 描述 读入一个双精度浮点数&#xff0c;保留12位小数&#xff0c;输出这个浮点数。 输入 只有一行&#xff0c;一个双精度浮点数。 输出 也只有一行&#xff0c;保留12位小数的浮点数。 样例输入…

scanfmalloc

之前知道scanf输入过多时会触发malloc&#xff0c;这次进行系统地记录。 1.setbuf(stdin,0) 大部分程序都会有这样地初始化&#xff0c;这使得一开始heap中不会有为scanf预留的缓冲区。 但是预留的缓冲区终是有限的&#xff0c;例如输入0x400以上时&#xff0c;scanf就会触发…

python的模块

什么是模块&#xff08;Module&#xff09; 在计算机程序的开发过程中&#xff0c;随着程序代码越写越多&#xff0c;写在一个文件里的代码就会越来越长&#xff0c;越来越不容易维护。 为了让代码方便维护&#xff0c;我们将代码进行分类&#xff0c;分别放到不同的文件里。…

【OpenHarmony】ArkTS 语法基础 ④ ( ArkTS UI 渲染控制 | if else 条件渲染 | ForEach 循环渲染 )

文章目录 一、ArkTS UI 渲染控制1、if else 条件渲染2、ForEach 循环渲染 二、完整代码示例1、自定义组件代码2、主界面代码3、执行结果 参考文档 : <HarmonyOS第一课>ArkTS开发语言介绍 一、ArkTS UI 渲染控制 1、if else 条件渲染 在 Component 自定义组件 中的 build …

⌈ 传知代码 ⌋ 预测人物性别年龄

&#x1f49b;前情提要&#x1f49b; 本文是传知代码平台中的相关前沿知识与技术的分享~ 接下来我们即将进入一个全新的空间&#xff0c;对技术有一个全新的视角~ 本文所涉及所有资源均在传知代码平台可获取 以下的内容一定会让你对AI 赋能时代有一个颠覆性的认识哦&#x…

Javascript 数据类型详解:7种基本类型、3种引用类型

还是大剑师兰特&#xff1a;曾是美国某知名大学计算机专业研究生&#xff0c;现为航空航海领域高级前端工程师&#xff1b;CSDN知名博主&#xff0c;GIS领域优质创作者&#xff0c;深耕openlayers、leaflet、mapbox、cesium&#xff0c;canvas&#xff0c;webgl&#xff0c;ech…

【CesiumJS入门】(12)Vite+Vue3+Cesium 简易安装与配置

步骤 vite 创建项目&#xff1a;yarn create vite安装 Cesium&#xff1a;yarn add cesium安装 vite-plugin-static-copy&#xff1a;yarn add -D vite-plugin-static-copy 配置 vite.config.js &#xff1a; import { defineConfig } from "vite"; import vue fro…

制作自己的 ButterKnife(使用 AutoService 和 APT 注解处理器在编译期生成 Java 代码)

ButterKnife 开发过 Android 的肯定都知道曾经有这么一个库&#xff0c;它能够让你不用再写 findViewById 这样的代码&#xff0c;这就是大名鼎鼎的 ButterKnife&#xff08;https://github.com/JakeWharton/butterknife&#xff09;。虽然现在这个库已经不再维护&#xff0c;…

LabVIEW实现汽车逆变器功能测试系统

​介绍了如何利用LabVIEW开发汽车逆变器&#xff08;包括功率板和控制板&#xff09;的自动测试设备&#xff08;ATE&#xff09;&#xff0c;实现对额定800V电压、300A电流的逆变器进行功能测试。系统通过CAN2.0通讯协议&#xff0c;实现电机控制、温度传感器监测、电压校验和…

Java程序策——Java连接数据库保姆级教程(超详细步骤)

【Java程序策】——连接数据库 目录 ​编辑 一&#xff1a;在数据库中建立一个表&#xff08;student表&#xff09; 1.1&#xff1a;进入mysql 1.2&#xff1a;建立一个“数据库成员” 1.3&#xff1a;建立一个表&#xff08;student表&#xff09; 1.4&#xff1a;给表…

关于 spring boot 的目录详解和配置文件

目录 配置文件 spring boot 的配置文件有两种格式&#xff0c;分别是 properties 和 yml&#xff08;yaml&#xff09;。这两种格式的配置文件是可以同时存在的&#xff0c;此时会以 properties 的文件为主&#xff0c;但一般都是使用同一种格式的。 格式 properties 语法格…

36. 【Java教程】输入输出流

本小节将会介绍基本输入输出的 Java 标准类&#xff0c;通过本小节的学习&#xff0c;你将了解到什么是输入和输入&#xff0c;什么是流&#xff1b;输入输出流的应用场景&#xff0c;File类的使用&#xff0c;什么是文件&#xff0c;Java 提供的输入输出流相关 API 等内容。 1…

eNSP学习——OSPF的DR与BDR

目录 相关命令 原理概述 实验内容 实验目的 实验拓扑 实验编址 实验步骤 1、基本配置 2、搭建基本的OSPF网络 3、查看默认情况下的DR/BDR状态 4、根据现网需求影响DR/BDR选举 需要eNSP各种配置命令的点击链接自取&#xff1a;华为&#xff45;NSP各种设备配置命令大…

小白级教程—安装Ubuntu 20.04 LTS服务器

下载 本教程将使用20.04版进行教学 由于官方速度可能有点慢&#xff0c;可以下方的使用清华镜像下载 https://mirrors.tuna.tsinghua.edu.cn/ubuntu-releases/ 点击20.24版本 选择 ubuntu-20.04.6-live-server-amd64.iso 新建虚拟机 下载好后 我们使用 VMware 打开它 这里选…

数组的详细介绍

数组是一组相同类型元素的集合&#xff0c;也就是说&#xff1a;数组至少包含两个及以上的元素&#xff0c;且元素类型相同。 数组包括一维数组和多维数组&#xff0c;其中二维数组最常见。下面我们一一介绍。 一维数组&#xff1a; 格式&#xff1a;type name [常量值]&…

2024开放式耳机怎么买才好?这里可以教你六招!

有不少人都在说“开放式蓝牙耳机无音质”&#xff0c;大多数的购买者往往既贪恋蓝牙耳机的便携性&#xff0c;又想要有线耳机的Hifi快感&#xff0c;对于我们来说最重要的就是确定预算和需求&#xff0c;这样才能定位到最适合自己的开放式蓝牙耳机。这么多年零零总总听下来的蓝…

【python】成功解决“ModuleNotFoundError: No module named ‘IPython’”错误的全面指南

成功解决“ModuleNotFoundError: No module named IPython’”错误的全面指南 一、引言 在Python编程中&#xff0c;ModuleNotFoundError是一种常见的错误类型&#xff0c;它通常表明Python解释器无法找到你试图导入的模块。特别是当你遇到“ModuleNotFoundError: No module…