diff --git a/client/advertising.c b/client/advertising.c
index cb0ca4a..8abf478 100644
--- a/client/advertising.c
+++ b/client/advertising.c
ad.manufacturer.data.len);
}
+ if (ad.data.data.len) {
+ bt_shell_printf("Data Type: 0x%02x\n", ad.data.type);
+ bt_shell_hexdump(ad.data.data.data, ad.data.data.len);
+ }
+
bt_shell_printf("Tx Power: %s\n", ad.tx_power ? "on" : "off");
if (ad.local_name)
bt_shell_printf("Apperance: %s\n",
ad.appearance ? "on" : "off");
+ bt_shell_printf("Discoverable: %s\n", ad.discoverable ? "on": "off");
+
if (ad.duration)
bt_shell_printf("Duration: %u sec\n", ad.duration);