diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2004-11-08 13:37:59 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2004-11-08 13:37:59 +0000 |
commit | 52e03fab5cb877505e6a4c391b5b0456726ed162 (patch) | |
tree | 539a5241dcdf572bc041c7e7010d3c52fbd7e5b6 | |
parent | 9427f5dc51c6962692eecd7250f2a1130dbc49ad (diff) |
Add version identifier for Bluetooth 2.0
-rw-r--r-- | src/hci.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -312,9 +312,10 @@ int hci_strtolm(char *str, unsigned int *val) /* Version mapping */ static hci_map ver_map[] = { - { "1.0b", 0x00 }, - { "1.1", 0x01 }, - { "1.2", 0x02 }, + { "1.0b", 0x00 }, + { "1.1", 0x01 }, + { "1.2", 0x02 }, + { "2.0", 0x03 }, { NULL } }; |