
BLE5.0
文章平均质量分 59
mengbinaaa
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Silicon Labs蓝牙开发环境搭建
#一、simplicity-studio 5下载simplicity-studio 5为Silicon Labs基于Eclipse开发的官方IDE,Simplicity Studio不仅仅是一个IDE,它包含了SDK(需选择下载),软件示例Demo、资料文档,以及用于能量分析、配置和无线网络分析的工具,这里我们安装windows版本,下载地址为https://cn.silabs.com/developers/simplicity-studio.#二、simplicity-studio 5安装下载完为一原创 2021-03-02 17:57:35 · 1890 阅读 · 4 评论 -
TI AoA Master/PC 数据发送、接收流程梳理
1、Master怎样发送、接收数据? Master发送数据: RTLSHost_sendMsg(RTLS_CMD_AOA_RESULT_ANGLE, HOST_ASYNC_RSP, (uint8_t *)&aoaResult, sizeof(rtlsAoaResultAngle_t)); uint8_t NPITask_sendToHost(_npiFrame_t *pMsg); NPIUtil_enqueueMsg(npiTxQueue, syncEvent, NPITAS.原创 2021-02-26 11:37:26 · 673 阅读 · 1 评论 -
Maximizing BLE Throughput on iOS and Android
April 3, 2016By:Punch Through转自 :https://punchthrough.com/maximizing-ble-throughput-on-ios-and-android/Still confused about how fast you can really send data over Bluetooth Low Energy?It’s not just you. A google search will turn up many incomplete ..翻译 2021-01-13 23:49:34 · 278 阅读 · 0 评论 -
树莓派BLE
树莓派用户名:pi密码:mengbin1231、扫描可用的低功耗蓝牙设备(BLE)sudo hcitool lescan2、连接的想要连接的设备的物理地址,打开后输入connect连接sudo gatttool -b <BLE ADDRESS> -Iconnectdisconnect MAC3、获得BLE设备提供的服务信息(server)primaryattr handle: 0x001e, end grp handle: 0x002e uuid: 0000fff0-.原创 2020-05-26 16:43:10 · 447 阅读 · 0 评论 -
CC2640 battery monitor
使用CC2640r2f内部的battery monitor功能检测电池电压1、在simple_peripherapl.c中添加头文件#include <driverlib/aon_batmon.h>2、在周期函数中调用 uint8_t integer ,frac; // <int.frac> format size <3.8> ...原创 2018-07-30 15:53:51 · 160 阅读 · 0 评论 -
CC2640之Notify
修改simple_peripheral工程的simple_gatt_profile.c文件:1、工程默认char4为notify,长度为1个字节,我们参考char5把它修改为20个字节。2、为了使主机能自动获取char4的handle,从而打开notify开关,我们为char4的属性添加一个read 权限修改后的代码如下,其中 SIMPLEPROFILE_CHAR4_LEN = 20;...原创 2018-07-23 00:57:10 · 311 阅读 · 1 评论