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

can't find mesh service

I followed the guide of github.com/.../nRF51-ble-bcast-mesh to try the mesh with NRF51822.But there seem no discribtion about which softdevice we should use.I loaded the s110_nrf51822_7.3.0_softdevice.hex and rbc_mesh_led_example.hex to the nrf51822. I add code to let the led blink as 1s on 1s off.

while (true)
{
    sd_app_evt_wait();
			led_config(1, 0);
			led_config(2, 0);
			nrf_delay_ms(1000);
			led_config(1, 1);
			led_config(2, 1);
			nrf_delay_ms(1000);
} 

And the led will blink but I can't find the Mesh GATT service using the "lightblue" APPs. Who can help me ?

Parents
  • From the readme:

    The master branch is currently parked, and lacks some critical features compared to the latest version of the mesh framework. Currently, the sdk-8-support branch contains the latest updates, but you can always check the "Releases" tab above to keep track of all the latest versions.

    So you should use this branch.

    From its readme:

    Works with SoftDevice S110 v8.x and S130 v1.0 with Timeslot API, and the nRF51 SDK8.1.

    Unzip in \examples. Flash S110 v8.0.0. I tested nRF51-ble-bcast-mesh-sdk-8-support\nRF51\examples\BLE_Gateway. It appears in Master Control Panel.

Reply
  • From the readme:

    The master branch is currently parked, and lacks some critical features compared to the latest version of the mesh framework. Currently, the sdk-8-support branch contains the latest updates, but you can always check the "Releases" tab above to keep track of all the latest versions.

    So you should use this branch.

    From its readme:

    Works with SoftDevice S110 v8.x and S130 v1.0 with Timeslot API, and the nRF51 SDK8.1.

    Unzip in \examples. Flash S110 v8.0.0. I tested nRF51-ble-bcast-mesh-sdk-8-support\nRF51\examples\BLE_Gateway. It appears in Master Control Panel.

Children
Related