Hi,
I'm working on sending string data over mesh by following this case, my message is printed on server side in mesh_msg_handle() function (access.c file), but I want to print it in server main.c file, from what i see in the provisioner log : Unhandled mesh event: 4, my message is not handled after handle_incoming() function. i don't understand how it works after debugging this function I'm using mesh SDK v2.0.1.
Also from what i learn in that case is that i have to do the initialization of the simple message model on both client and server side, i added that with the initialization of the on_off model but it shows error like NRF_NO_MEM on client side (No more memory available to allocate model) and NRF_FORBIDDEN on server side (multiple instances per element is not allowed), after that i tried to replace the simple_on_off model configuration by simple_message model configuration in node_setup.c file, but it fails and configuration of nodes won't happen.
Am I allowed to add simple message model configuration in node_setup.c file like the simple on_off model so the message can be handled?
Thank you,
Best regards