BLE Mesh Sensor Model issue 2

Hi everyone,


I have a preblem for BLE Mesh 5.0 version (board is nrf52840),

I found that in the Setting set function of the Sensor Model, it seems that the data is transmitted  by client to the server, but the server cannot receive it.

Does anyone have the same problem? How to solve it?

Process:

I'm using unmodified example when testing, but 

I using client model button(1) trigger sensor_client_setting_set (P1)

 (P1)

set data is 

static uint16_t length;
static sensor_setting_set_msg_pkt_t set_data;
set_data.property_id = SENSOR_MOTION_SENSED_PROPERTY_ID;
set_data.setting_property_id = SENSOR_MOTION_SENSED_PROPERTY_ID;
set_data.setting_raw[0] = 0x01;
set_data.setting_raw[1] = 0x20;

sensor_client_setting_set is timeout for Client. (P2) 

Client:

But I using sensor_client_setting_get with Client, server has response.

Client: (P3) 

 (P3)

Server: (P4)

  (P4)

By the way, provisioner configuration was successful.

Best regards.

Related