So I have implemented the UART BLE mesh code as mentioned in
devzone.nordicsemi.com/.../send-and-receive-a-string-via-access-layer .
Now I am able to take inputs from the UART port of the client and send it to the UART port of the Server. But I am unable to do vice versa.
Interestingly, when I change the destination address in the send function from 0xCAFE to 0x0001 which is the provisioner address(in this case the client) the string I send from the server is printed on the debug terminal of the client.But I am unable to find the place where it is received in the client code.
I checked and it does not come into the handle_incoming() function as is the case with the => Client to Server communication.
Can you please help me figure this out?