From d69d22e2c7dd89b09e76da1f3e73a3c6d2a9b45a Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Wed, 10 Jul 2019 13:44:28 +0200 Subject: [PATCH] mesh: remove call got get sequence number for printf --- test/mesh/mesh_configuration_server.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/mesh/mesh_configuration_server.c b/test/mesh/mesh_configuration_server.c index f60844625..d0e26eb9d 100644 --- a/test/mesh/mesh_configuration_server.c +++ b/test/mesh/mesh_configuration_server.c @@ -1835,11 +1835,10 @@ config_model_publication_get_handler(mesh_model_t *mesh_model, mesh_pdu_t * pdu) static void config_heartbeat_publication_emit(mesh_heartbeat_publication_t * mesh_heartbeat_publication){ - printf("CONFIG_SERVER_HEARTBEAT: Emit (dest %04x, count %u, period %u ms, seq %x)\n", + printf("CONFIG_SERVER_HEARTBEAT: Emit (dest %04x, count %u, period %u ms)\n", mesh_heartbeat_publication->destination, mesh_heartbeat_publication->count, - mesh_heartbeat_publication->period_ms, - mesh_sequence_number_peek()); + mesh_heartbeat_publication->period_ms); // active features mesh_heartbeat_publication->active_features = mesh_foundation_get_features();