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.

how to recieve notifications on central device

Hi,

     I programmed ble peripheral device to send notifications for every 5 secs by using return GATT_Notification( ); , on the recieving side(BLE central) i did the following modifications in the simpleBLECentralProcessGATTMsg()

if( ( pMsg->method == ATT_HANDLE_VALUE_NOTI) )
{

LCD_WRITE_STRING_VALUE( "NOTI RXC: ", pMsg->msg.handleValueNoti.value[0], 10, HAL_LCD_LINE_1 );
}

still i am not able to recieve and not able to print notifications on LCD, what could be the problem?

am i missing anything?

note: with BTtool it is working perfectly