From 98f6f92be002a098fb4f3b773939ab7c94834a0d Mon Sep 17 00:00:00 2001 From: Max Krasnyansky Date: Mon, 22 Apr 2002 20:16:27 +0000 Subject: Display feature bytes in hex --- tools/hciconfig.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tools/hciconfig.c') diff --git a/tools/hciconfig.c b/tools/hciconfig.c index 96d4c7b4..21f7bc1c 100644 --- a/tools/hciconfig.c +++ b/tools/hciconfig.c @@ -98,7 +98,9 @@ void print_dev_features(struct hci_dev_info *di, int format) di->features[0], di->features[1], di->features[2], di->features[3] ); } else { - printf("\tFeatures:\n%s\n", + printf("\tFeatures: 0x%2.2x 0x%2.2x 0x%2.2x 0x%2.2x\n%s\n", + di->features[0], di->features[1], + di->features[2], di->features[3], lmp_featurestostr(di->features, "\t\t", 3)); } } -- cgit