2020-01-17 23:06:56

by Stotland, Inga

[permalink] [raw]
Subject: [PATCH BlueZ] mesh: Fix opcode for OP_VEND_MODEL_APP_GET

This changes the value of OP_VEND_MODEL_APP_GET to 0x804D (it was
incorrectly set to 0x804C)
---
mesh/cfgmod.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mesh/cfgmod.h b/mesh/cfgmod.h
index da8b5b32b..383fdbf6b 100644
--- a/mesh/cfgmod.h
+++ b/mesh/cfgmod.h
@@ -91,7 +91,7 @@
#define OP_NODE_RESET_STATUS 0x804A
#define OP_MODEL_APP_GET 0x804B
#define OP_MODEL_APP_LIST 0x804C
-#define OP_VEND_MODEL_APP_GET 0x804C
+#define OP_VEND_MODEL_APP_GET 0x804D
#define OP_VEND_MODEL_APP_LIST 0x804E

void cfgmod_server_init(struct mesh_node *node, uint8_t ele_idx);
--
2.21.1


2020-01-18 07:15:39

by Gix, Brian

[permalink] [raw]
Subject: Re: [PATCH BlueZ] mesh: Fix opcode for OP_VEND_MODEL_APP_GET

Applied
On Fri, 2020-01-17 at 15:06 -0800, Inga Stotland wrote:
> This changes the value of OP_VEND_MODEL_APP_GET to 0x804D (it was
> incorrectly set to 0x804C)
> ---
> mesh/cfgmod.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/mesh/cfgmod.h b/mesh/cfgmod.h
> index da8b5b32b..383fdbf6b 100644
> --- a/mesh/cfgmod.h
> +++ b/mesh/cfgmod.h
> @@ -91,7 +91,7 @@
> #define OP_NODE_RESET_STATUS 0x804A
> #define OP_MODEL_APP_GET 0x804B
> #define OP_MODEL_APP_LIST 0x804C
> -#define OP_VEND_MODEL_APP_GET 0x804C
> +#define OP_VEND_MODEL_APP_GET 0x804D
> #define OP_VEND_MODEL_APP_LIST 0x804E
>
> void cfgmod_server_init(struct mesh_node *node, uint8_t ele_idx);