This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC2564MODA: HFP and HID app not working simultaneously

Part Number: CC2564MODA
Other Parts Discussed in Thread: CC2564

I am trying to merge HFPDemo and HIDDemo. We are using chip CC2564.  To register HFP and HID I have called following functions after stack is initialized with OpenStack()

HIDDeviceMode();

OpenHFServer(); 

Both HID and HFP registered successfully. But when I connect my android and ios device, only HFP profile gets triggered by its callback. HID_Event_callback fails to trigger on connection.
I disabled HFP initialization by commenting call to function    APL_OpenHFServer();. After this change HID started properly. How to run both profiles at the same time?