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

BLE MESH3.0 Merge Cilent and Provisioner Firmware.

Hello ,

Que 1 :I want to Merge Client and Provisioner Firmware is possible..?

Que 2:Multiple provisioner can i define in same moudle.

Que 3:BLE MESH Network ,How many Provisioner work in same network..?

Regard's

Nikunj  

Parents
  • Hello,

     ERROR_CHECK(mesh_provisionee_prov_start(&prov_start_params));

    Above Function is use in client To start Beacon. if i add this function in Provisioner code  i got an Error 0x0000010e.Please let me 

    static void start(void)
    {
        rtt_input_enable(app_rtt_input_handler, RTT_INPUT_POLL_PERIOD_MS);
        __LOG(LOG_SRC_APP, LOG_LEVEL_INFO, "<start> \n");
    
    #if (!PERSISTENT_STORAGE)
        app_start();
    #endif
    
          static const uint8_t static_auth_data[NRF_MESH_KEY_SIZE] = STATIC_AUTH_DATA;
          mesh_provisionee_start_params_t prov_start_params =
          {
              .p_static_data    = static_auth_data,
              .prov_complete_cb = provisioning_complete_cb,
              .prov_device_identification_start_cb = device_identification_start_cb,
              .prov_device_identification_stop_cb = NULL,
              .prov_abort_cb = provisioning_aborted_cb,
              .p_device_uri = NULL
          };
          ERROR_CHECK(mesh_provisionee_prov_start(&prov_start_params));
    
    
        ERROR_CHECK(nrf_mesh_enable());
    
        hal_led_mask_set(LEDS_MASK, LED_MASK_STATE_OFF);
        hal_led_blink_ms(LEDS_MASK, LED_BLINK_INTERVAL_MS, LED_BLINK_CNT_START);
    }

    Thank's

    Nikunj

  • I suggest you open a new ticket and include more details about the issue.

Reply Children
No Data
Related