From f367fa3c9fe591792f124db2c9d81b61f296afdf Mon Sep 17 00:00:00 2001 From: Marcin Kraglak Date: Mon, 30 Jan 2023 10:13:36 +0100 Subject: monitor/att: Fix Set Member Lock decoding According to CSIS specification v1.0.1: "Allowed values for the Set Member Lock characteristic are Unlocked (corresponding to the numeric value 0x01) and Locked (corresponding to the numeric value 0x02); all other values are RFU". --- monitor/att.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'monitor') diff --git a/monitor/att.c b/monitor/att.c index 3b78884bc..05784e9f4 100644 --- a/monitor/att.c +++ b/monitor/att.c @@ -1760,10 +1760,10 @@ static void csip_lock_read(const struct l2cap_frame *frame) switch (lock) { case 0x01: - print_field(" Locked (0x%02x)", lock); + print_field(" Unlocked (0x%02x)", lock); break; case 0x02: - print_field(" Unlocked (0x%02x)", lock); + print_field(" Locked (0x%02x)", lock); break; default: print_field(" RFU (0x%02x)", lock); -- cgit v1.2.1