mesh: cfg_cli: Set default message timeout to 5 seconds

To be able to process long messages like composition data get.

X-Original-Commit: cb2a7cb98ac55ece8d007dab1f70b7bf4bc2bc50
This commit is contained in:
Michał Narajowski
2018-02-16 14:26:02 +01:00
parent 5d427da0df
commit 9b080e3657
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ struct comp_data {
struct os_mbuf *comp;
};
static s32_t msg_timeout = K_SECONDS(2);
static s32_t msg_timeout = K_SECONDS(5);
static struct bt_mesh_cfg_cli *cli;
+1 -1
View File
@@ -23,7 +23,7 @@
#include "foundation.h"
#include "mesh/health_cli.h"
static s32_t msg_timeout = K_SECONDS(2);
static s32_t msg_timeout = K_SECONDS(5);
static struct bt_mesh_health_cli *health_cli;