Dear TI,
请问一下, static attHandleValueNoti_t pReport;中 pReport.handle的值哪里算出来的?
// Simple Profile Characteristic 4 Properties
static uint8 simpleProfileChar4Props = GATT_PROP_NOTIFY;
static attHandleValueNoti_t pReport;
pReport.handle=0x2E;
pReport.len = len;
osal_memcpy(pReport.value, pBuffer, len);
GATT_Notification( 0, &pReport, FALSE );
sky003:
用btool 查看discovered charact by uuid ,read后看倒数第三第四个数据值.有谁知道在profile代码中怎么看出这个handle值?