diff options
author | Sreenidhi T <nidhit@broadcom.com> | 2012-04-11 06:50:28 -0700 |
---|---|---|
committer | Matthew Xie <mattx@google.com> | 2012-07-14 11:19:16 -0700 |
commit | 5edcdde0b51f3d5153990672f55422bbcabc5cec (patch) | |
tree | e7d947fe698b9d6edfd68b3bbd91265075a56551 /conf | |
parent | 7ca15ca81eee23a930eecc9f388cc73b4efc1994 (diff) | |
download | external_bluetooth_bluedroid-5edcdde0b51f3d5153990672f55422bbcabc5cec.zip external_bluetooth_bluedroid-5edcdde0b51f3d5153990672f55422bbcabc5cec.tar.gz external_bluetooth_bluedroid-5edcdde0b51f3d5153990672f55422bbcabc5cec.tar.bz2 |
Added changes for parsing bt_did.conf file
Change-Id: I3cd885d49080a1bfa258c39881fd7cd5fdf2b652
Diffstat (limited to 'conf')
-rw-r--r-- | conf/Android.mk | 8 | ||||
-rwxr-xr-x | conf/bt_did.conf | 94 |
2 files changed, 102 insertions, 0 deletions
diff --git a/conf/Android.mk b/conf/Android.mk index c590724..63e3c7c 100644 --- a/conf/Android.mk +++ b/conf/Android.mk @@ -11,6 +11,14 @@ LOCAL_MODULE_TAGS := eng LOCAL_SRC_FILES := $(LOCAL_MODULE) +LOCAL_MODULE := bt_did.conf +LOCAL_MODULE_CLASS := ETC +LOCAL_MODULE_PATH := $(TARGET_OUT)/etc/bluetooth + +LOCAL_MODULE_TAGS := eng + +LOCAL_SRC_FILES := bt_did.conf + include $(BUILD_PREBUILT) ifeq ($(TARGET_PRODUCT), full_maguro) diff --git a/conf/bt_did.conf b/conf/bt_did.conf new file mode 100755 index 0000000..2b88d5e --- /dev/null +++ b/conf/bt_did.conf @@ -0,0 +1,94 @@ +# Device ID (DID) configuration
+[DID]
+
+# Record Number: 1, 2 or 3 - maximum of 3 records
+recordNumber = 1
+
+# Primary Record - true or false (default)
+# There can be only one primary record
+primaryRecord = true
+
+# Vendor ID '0xFFFF' indicates no Device ID Service Record is present in the device
+# 0x000F = Broadcom Corporation (default)
+#vendorId = 0x000F
+
+# Vendor ID Source
+# 0x0001 = Bluetooth SIG assigned Device ID Vendor ID value (default)
+# 0x0002 = USB Implementer’s Forum assigned Device ID Vendor ID value
+#vendorIdSource = 0x0001
+
+# Product ID & Product Version
+# Per spec DID v1.3 0xJJMN for version is interpreted as JJ.M.N
+# JJ: major version number, M: minor version number, N: sub-minor version number
+# For example: 1200, v14.3.6
+productId = 0x1200
+version = 0x1436
+
+# Optional attributes
+#clientExecutableURL =
+#serviceDescription =
+#documentationURL =
+
+#=================================================================================================#
+# Device ID (DID) configuration
+[DID]
+
+# Record number: 1, 2 or 3 - maximum of 3 records
+#recordNumber = 2
+
+# Primary Record - true or false (default)
+# There can be only one primary record
+#primaryRecord = false
+
+# Vendor ID '0xFFFF' indicates no Device ID Service Record is present in the device
+# 0x000F = Broadcom Corporation (default)
+#vendorId = 0x000F
+
+# Vendor ID Source
+# 0x0001 = Bluetooth SIG assigned Device ID Vendor ID value (default)
+# 0x0002 = USB Implementer’s Forum assigned Device ID Vendor ID value
+#vendorIdSource = 0x0001
+
+# Product ID & Product Version
+# Per spec DID v1.3 0xJJMN for version is interpreted as JJ.M.N
+# JJ: major version number, M: minor version number, N: sub-minor version number
+# Default: 0x0000, v00.0.0
+#productId = 0x0000
+#version = 0x0000
+
+# Optional attributes
+#clientExecutableURL =
+#serviceDescription =
+#documentationURL =
+
+#=================================================================================================#
+# Device ID (DID) configuration
+[DID]
+
+# Record number: 1, 2 or 3 - maximum of 3 records
+#recordNumber = 3
+
+# Primary Record - true or false (default)
+# There can be only one primary record
+#primaryRecord = false
+
+# Vendor ID '0xFFFF' indicates no Device ID Service Record is present in the device
+# 0x000F = Broadcom Corporation (default)
+#vendorId = 0x000F
+
+# Vendor ID Source
+# 0x0001 = Bluetooth SIG assigned Device ID Vendor ID value (default)
+# 0x0002 = USB Implementer’s Forum assigned Device ID Vendor ID value
+#vendorIdSource = 0x0001
+
+# Product ID & Product Version
+# Per spec DID v1.3 0xJJMN for version is interpreted as JJ.M.N
+# JJ: major version number, M: minor version number, N: sub-minor version number
+# Default: 0x0000, v00.0.0
+#productId = 0x0000
+#version = 0x0000
+
+# Optional attributes
+#clientExecutableURL =
+#serviceDescription =
+#documentationURL =
|