2020-01-28 11:08:17

by Szymon Janc

[permalink] [raw]
Subject: [PATCH] monitor: Add missing HCI command error code decoding

Packet Too Long (0x45 ) status code was missing.
---
monitor/packet.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/monitor/packet.c b/monitor/packet.c
index 6e7cc5e85..07c92ca07 100644
--- a/monitor/packet.c
+++ b/monitor/packet.c
@@ -519,6 +519,7 @@ static const struct {
{ 0x42, "Unknown Advertising Identifier" },
{ 0x43, "Limit Reached" },
{ 0x44, "Operation Cancelled by Host" },
+ { 0x45, "Packet Too Long" },
{ }
};

--
2.24.1


2020-01-30 09:12:50

by Szymon Janc

[permalink] [raw]
Subject: Re: [PATCH] monitor: Add missing HCI command error code decoding

Hi,

On Tuesday, 28 January 2020 12:07:40 CET Szymon Janc wrote:
> Packet Too Long (0x45 ) status code was missing.
> ---
> monitor/packet.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/monitor/packet.c b/monitor/packet.c
> index 6e7cc5e85..07c92ca07 100644
> --- a/monitor/packet.c
> +++ b/monitor/packet.c
> @@ -519,6 +519,7 @@ static const struct {
> { 0x42, "Unknown Advertising Identifier" },
> { 0x43, "Limit Reached"
},
> { 0x44, "Operation Cancelled by Host"
},
> + { 0x45, "Packet Too Long"
},
> { }
> };

Applied.


--
pozdrawiam
Szymon Janc