How does the mesh message go if a node public message to the address of itself?

Hi,

for example:

uint16_t addr = bt_mesh_primary_addr();
struct bt_mesh_msg_ctx ctx = {
                    .addr = addr;
                };
...
bt_mesh_lightness_cli_light_set_unack
will this message over the air or be handled by itself not over the air?
 
Thank you in advance.
Best regards,
Shawn
Parents
  • Hi,

    The network layer will neither transmit nor relay messages that are addressed to a unicast address on the node itself. This includes messages originating on the same node, and it also holds for messages over the GATT bearer; messages will not be relayed if they are addressed to elements on the node itself.

    Regards,
    Terje

Reply
  • Hi,

    The network layer will neither transmit nor relay messages that are addressed to a unicast address on the node itself. This includes messages originating on the same node, and it also holds for messages over the GATT bearer; messages will not be relayed if they are addressed to elements on the node itself.

    Regards,
    Terje

Children
Related