summaryrefslogtreecommitdiffstats
path: root/tools/hcitool.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2003-11-18 11:38:31 +0000
committerMarcel Holtmann <marcel@holtmann.org>2003-11-18 11:38:31 +0000
commit7fbea8e4421d04d23747ad4dbcc31aa2d10e0c74 (patch)
tree663a5b52958f18ec724df69969924998fef152fc /tools/hcitool.c
parentd877c418537d529a9c693f23b59ca8b61e089e43 (diff)
Display all 8 bytes of the features
Diffstat (limited to 'tools/hcitool.c')
-rw-r--r--tools/hcitool.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/hcitool.c b/tools/hcitool.c
index 59235270..cd546735 100644
--- a/tools/hcitool.c
+++ b/tools/hcitool.c
@@ -462,8 +462,9 @@ static void cmd_info(int dev_id, int argc, char **argv)
}
if (hci_read_remote_features(dd, handle, features, 20000) == 0) {
- printf("\tFeatures: 0x%2.2x 0x%2.2x 0x%2.2x 0x%2.2x\n%s\n",
+ printf("\tFeatures: 0x%2.2x 0x%2.2x 0x%2.2x 0x%2.2x 0x%2.2x 0x%2.2x 0x%2.2x 0x%2.2x\n%s\n",
features[0], features[1], features[2], features[3],
+ features[4], features[5], features[6], features[7],
lmp_featurestostr(features, "\t\t", 3));
}