From a596f54e8fc7000d7f4ff2bea3d85e1432df302c Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Mon, 26 Aug 2019 11:49:32 +0200 Subject: [PATCH] mesh: calculate publish period as num steps * period resolution --- src/mesh/mesh_access.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesh/mesh_access.c b/src/mesh/mesh_access.c index 6a731886e..db952e01d 100644 --- a/src/mesh/mesh_access.c +++ b/src/mesh/mesh_access.c @@ -923,7 +923,7 @@ static void mesh_model_publication_setup_publication(mesh_publication_model_t * publication_model->retransmit_count = mesh_model_publication_retransmit_count(publication_model->retransmit); // schedule next publication or retransmission - uint32_t publication_period_ms = mesh_access_transitions_step_ms_from_gdtt(publication_model->period); + uint32_t publication_period_ms = mesh_access_time_gdtt2ms(publication_model->period); // set next publication if (publication_period_ms != 0){