From 905821a6b1bdb4899d654de4581f749e6b55f129 Mon Sep 17 00:00:00 2001 From: Sebastian Blumenthal Date: Mon, 24 Nov 2014 13:17:20 +0100 Subject: [PATCH] Changed flag from bool to int for better interopability. --- src/fmpc_world_model.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fmpc_world_model.hpp b/src/fmpc_world_model.hpp index 4e6d86b..ca8b5a6 100644 --- a/src/fmpc_world_model.hpp +++ b/src/fmpc_world_model.hpp @@ -19,7 +19,7 @@ char fmpc_world_model_meta[] = /* declaration of block configuration */ ubx_config_t fmpc_world_model_config[] = { { .name="wm_handle", .type_name = "struct rsg_wm_handle", .doc="Handle to the world wodel instance. This parameter is mandatory." }, - { .name="use_mockup", .type_name = "bool", .doc="If true an internal mockup is used rather than a real system. To be used for testing." }, + { .name="use_mockup", .type_name = "int", .doc="If true an internal mockup is used rather than a real system. To be used for testing." }, { NULL }, };