Tool/software: TI-RTOS
Hello.
I have 2 characteristics that can send indications (The central can activate indications on both of them).
The peripheral can send indications on any one of them at any time.
I need to know that each message sent was received, by capturing the BLE ACK received from the central.
The problem:
I'm capturing the ATT_HANDLE_VALUE_CFM event in SimplePeripheral_processGATTMsg, but I can't tell which char it relates to.
I tried to cast the gattMsgEvent_t.msg to handleValueInd (part of the gattMsg_t union), but all values there are 00000.
Is there anyway to know which char is responsible for this message?