I'm using nRF5 SDK for Mesh v5.0 and I'm evaluating the Provisioner example to provision a node with sensor server model .
I want to modify the default publish period of Sensor Server model.
But when I set the step_num to a non-zero value in Line 540 (see below) in node_setup.c, the configuration process failed.
......
case NODE_SETUP_CONFIG_PUBLICATION_SENSOR_SERVER:
case NODE_SETUP_CONFIG_PUBLICATION_SENSOR_SETUP_SERVER:
case NODE_SETUP_CONFIG_PUBLICATION_SCENE_SERVER:
case NODE_SETUP_CONFIG_PUBLICATION_SCENE_SETUP_SERVER:
{
access_publish_period_t publish_period =
{
.step_num = 1,
.step_res = ACCESS_PUBLISH_RESOLUTION_100MS //ACCESS_PUBLISH_RESOLUTION_100MS
};
......
