
低功耗蓝牙开发
文章平均质量分 60
QAQWE
Keep it simple and stupid
展开
-
nrf52x 移植spi fatfs记录
1 平台mcu nordic 52840 ,flash Macronix MX252 版本ff143 过程1)添加文件diskio.c diskio.h ff.c ff.h ffconf.h ffunicode.c (ffsystem.c 系统相关,不添加)2)修改内容/*****diskio.c*******/ //主要修改初始化接口以及读写接口定义spif...原创 2019-12-12 16:37:17 · 1383 阅读 · 0 评论 -
nordic调试错误一 记录
1 编译报错编译路径:SDK\examples\peripheral内容:Error #544: Required Software Pack 'ARM.CMSIS.4.5.0' is not installedError #543: Device nRF52840_xxAA(Nordic Semiconductor) not found, pack 'NordicSemic...原创 2019-12-06 11:20:06 · 6516 阅读 · 0 评论 -
cc2640- mma8452三轴传感器调试
说明有时候项目做好,时间长了就忘记,这边做一个总结,方便以后自己看。使用环境:IAR,协议栈 2_02_01_181 配置管脚在CC2650_LAUNCHXL.h文件中配置,另,如果有其他外设或者gpio占用了这两个脚,那么务必要将他们取消掉。 /* I2C */#define Board_I2C0_SCL0 IOID_6 // IOID_4...原创 2019-02-27 16:12:56 · 871 阅读 · 0 评论 -
蓝牙问题总结
一、Base on the demo projects SimpleBLECentral and SimpleBLEPeripheral.Backgroud: http://e2e.ti.com/support/low_power_rf/f/538/p/318484/1108115.aspx#1108115(CC2540)Only 20 Bytes data can be tran原创 2014-03-24 09:30:18 · 11095 阅读 · 3 评论 -
BLE蓝牙小知识点记录
1 蓝牙传输距离原创 2014-08-26 08:35:27 · 1375 阅读 · 0 评论 -
蓝牙API分析
一、GATT API 1)GATT服务程序 2)GATT子服务程序 1、GATT_ReadUsingCharUUID (uint16 connHandle, attReadByTypeReq_t *pReq, uint8 taskId)用于读取一个服务的handle,准确的说,可以用此handle读取保存在characteristic中的数据。This sub-proced原创 2014-03-24 10:07:56 · 2881 阅读 · 0 评论 -
IAR编译错误
Error[e104]: Failed to fit all segments into specified ranges. Problem discovered in segment XDATA_N. Unable to place 2 block(s) (0xc02 byte(s) total) in 0xbdf byte(s) of memory. The problem occurre原创 2014-05-16 11:01:23 · 7264 阅读 · 0 评论 -
蓝牙配对与绑定的过程
两个设备建立连接以后,就可以进行一个配对的过程。翻译 2014-08-07 11:29:17 · 13091 阅读 · 0 评论 -
更新TI BLE蓝牙协议栈过程BLEv1.2
摘自维基百科(http://processors.wiki.ti.com/index.php/LPRF_BLE_Porting_Projects)转载 2014-08-19 08:31:03 · 2780 阅读 · 0 评论 -
cc2540 Packet Sniffer使用
cc2540抓包使用packet sniffer:Protocol原创 2014-05-07 09:33:11 · 4996 阅读 · 0 评论 -
BLE广播间隔理解与设置
1 设备物理层的名称原创 2014-07-24 17:50:14 · 8427 阅读 · 2 评论 -
cc2540 communication
1 Find Information RequestThe Find Information Request is used to obtain the mapping of attribute handleswith their associated types. This allows a client to discover the list of attributesand原创 2014-03-25 10:56:29 · 2130 阅读 · 0 评论 -
cc2540特征值查找之同时查找两个特征值
static void simpleBLEGATTDiscoveryEvent( gattMsgEvent_t *pMsg ){ attReadByTypeReq_t req; if ( simpleBLEDiscState == BLE_DISC_STATE_SVC ) { // Service found, store handles原创 2014-05-07 18:03:43 · 3282 阅读 · 1 评论