1. 修改工程选项,去掉CC2540_MINIDK,烧写CC2541代码
2. 打开手机软件TruthBlue2_7
3. 准备看下特征值4的通信,在周期处理里面,一直读取特征值3的值,然后由特征值4返回
1 static void performPeriodicTask( void ) 2 { 3 uint8 valueToCopy; 4 uint8 stat; 5 stat = SimpleProfile_GetParameter( SIMPLEPROFILE_CHAR3, &valueToCopy); 6 7 if( stat == SUCCESS ) 8 { 9 SimpleProfile_SetParameter( SIMPLEPROFILE_CHAR4, sizeof(uint8), &valueToCopy); 10 } 11 }
4. 调试的时候遇到问题,手机APP收到不到特征值4的返回,经查找是多个例程都用到了同一个simpleGATTprofile.c,所以在工程里面另外新建一个simpleGATTprofile.c并添加。问题解决收到数据。如果是自己的工程,建议新建一个profile文件夹,不要多个工程共用一个,下面看下profile的C文件,BLE-CC254x-1.4.2.2ProjectsleProfilesSimpleProfileCC254xsimpleGATTprofile.c,经过实际测试吗,用TruthBlue2_7这个软件的话,手机按键进入休眠唤醒之后还能接收数据,看到了一丝曙光。
1 //bStatus_t SimpleProfile_SetParameter( uint8 param, uint8 len, void *value ) //这个函数通知特征值4改变 2 case SIMPLEPROFILE_CHAR4: 3 if ( len == sizeof ( uint8 ) ) 4 { 5 simpleProfileChar4 = *((uint8*)value); 6 7 // See if Notification has been enabled 8 GATTServApp_ProcessCharCfg( simpleProfileChar4Config, &simpleProfileChar4, FALSE, 9 simpleProfileAttrTbl, GATT_NUM_ATTRS( simpleProfileAttrTbl ), 10 INVALID_TASK_ID, simpleProfile_ReadAttrCB ); 11 } 12 else 13 { 14 ret = bleInvalidRange; 15 } 16 break
5. 打开自己写的APP测试软件,发现一旦启动,就停止运行了,怀疑是检测到的设备太多,所以挂掉了,Thread和Handler有什么区别?