Client to Server write with notification problem (BLUENRG-1)
I'm trying to :-
A> use one characteristic that Server can use to write data to Client with indication
B> use same characteristic so that Client can send data to Server with indication
the characteristic is set up as follows aci_gatt_add_char(....CHAR_PROP_READ|CHAR_PROP_INDICATE|CHAR_PROP_WRITE on both Client and Server
I have achieved A> and works pretty well, however I'm having problems with B>
the problem is even though I can send easily send the data from Client to Server and Server is receiving the data in the aci_gatt_notification_event()

How can I achieve notification back? I'm happy to have the Client >> Server write on a separate Characteristic
