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