Hello,
I am working on CC2650 while two weeks. Currently, I'm trying to add characteristic 6 that almost the same with characteristic 4 into SimpleBLEPeriperal project, but it can not notify anymore.
Bellow is the package sniffer info. That can see the client already written a value with "0x0001" to handle 0x0032 to trigger NOTIFY event, but not work.
Of course, I add sub-routine in "SimpleBLEPeripheral_performPeriodicTask()", likes below:
static uint8_t count = 0;
SimpleProfile_SetParameter(SIMPLEPROFILE_CHAR6, sizeof(uint8_t), &count);
count++;
If there are some missing to do?