This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

How to implement ble mesh Proxy node and relay node using nrf5_SDK_for_Mesh_v4.1.0_src ?

Hello,

I want to to configure mesh proxy node and along with that it should also contain relay functionalities using nrf5_SDK_for_Mesh_v4.1.0_src.

Is there any sample code / example available directly or indirectly for proxy and/or relay node ??

What are the steps for configuring relay node ?? 

Parents
  • Hi,

    The relay feature is enabled by default, and you set it with the MESH_FEATURE_RELAY_ENABLED define. (1 for enabled, 0 for disabled.)

    Similarly, there is a define for proxy feature named MESH_FEATURE_GATT_PROXY_ENABLED, with default setting of 0 (disabled).

    To set those defines specifically for your project, define them in nrf_mesh_config_app.h for your project. Then those defines will override the defaults.

    (The defaults are in nrf_mesh_config_core.h, which is global for all projects using the nRF5 SDK for Mesh, and so you should not change this file but rather override defines in your own app specific file, such as nrf_mesh_config_app.h.)

    Regards,
    Terje

Reply Children
No Data
Related