diff options
author | Andre Eisenbach <andre@broadcom.com> | 2012-04-05 09:46:34 -0700 |
---|---|---|
committer | Matthew Xie <mattx@google.com> | 2012-07-14 11:19:15 -0700 |
commit | 5883f2fb3fff54e3d308e64108b634eb85e43c62 (patch) | |
tree | c6f1e742c30b825492d706c162661925f6390ea3 /conf | |
parent | 7688ec9bffe2be2850672db8d108cbf58edec341 (diff) | |
download | external_bluetooth_bluedroid-5883f2fb3fff54e3d308e64108b634eb85e43c62.zip external_bluetooth_bluedroid-5883f2fb3fff54e3d308e64108b634eb85e43c62.tar.gz external_bluetooth_bluedroid-5883f2fb3fff54e3d308e64108b634eb85e43c62.tar.bz2 |
Added crespo4g configuration files
Change-Id: Ieb8df86f8a284f7a65eb3057d96003e72c32fb84
Diffstat (limited to 'conf')
-rw-r--r-- | conf/Android.mk | 3 | ||||
-rw-r--r-- | conf/samsung/crespo4g/Android.mk | 14 | ||||
-rw-r--r-- | conf/samsung/crespo4g/bt_vendor.conf | 48 |
3 files changed, 65 insertions, 0 deletions
diff --git a/conf/Android.mk b/conf/Android.mk index 1d613f6..c590724 100644 --- a/conf/Android.mk +++ b/conf/Android.mk @@ -19,6 +19,9 @@ endif ifeq ($(TARGET_PRODUCT), full_crespo) include $(LOCAL_PATH)/samsung/crespo/Android.mk endif +ifeq ($(TARGET_PRODUCT), full_crespo4g) + include $(LOCAL_PATH)/samsung/crespo4g/Android.mk +endif ifeq ($(TARGET_PRODUCT), full_wingray) include $(LOCAL_PATH)/moto/wingray/Android.mk endif diff --git a/conf/samsung/crespo4g/Android.mk b/conf/samsung/crespo4g/Android.mk new file mode 100644 index 0000000..974e213 --- /dev/null +++ b/conf/samsung/crespo4g/Android.mk @@ -0,0 +1,14 @@ +LOCAL_PATH := $(call my-dir) + +include $(CLEAR_VARS) + +LOCAL_MODULE := bt_vendor.conf +LOCAL_MODULE_CLASS := ETC +LOCAL_MODULE_PATH := $(TARGET_OUT)/etc/bluetooth + +LOCAL_MODULE_TAGS := eng + +LOCAL_SRC_FILES := $(LOCAL_MODULE) + +include $(BUILD_PREBUILT) + diff --git a/conf/samsung/crespo4g/bt_vendor.conf b/conf/samsung/crespo4g/bt_vendor.conf new file mode 100644 index 0000000..5bfc8a5 --- /dev/null +++ b/conf/samsung/crespo4g/bt_vendor.conf @@ -0,0 +1,48 @@ +# UART device port where Bluetooth controller is attached +UartPort = /dev/s3c2410_serial0 + +# Firmware patch file location +FwPatchFilePath = /vendor/firmware/ + +# Enable/Disable debug mode of libbt-vendor.so library +# The main key turns on/off debug modes of the whole library +# valid value : true, false +EnableDebug = true + +# The sub-key to enable/disable BtSnoop logging function +# The key is masked off if EnableDebug is false +# valid value : true, false +BtSnoopLogOutput = true + +# BtSnoop log output file +BtSnoopFileName = /data/misc/bluedroid/btsnoop_hci.log + +# The sub-key to enable/disable trace output of main vendor lib module +# The key is masked off if EnableDebug is false +# valid value : true, false +VndDebug = false + +# The sub-key to enable/disable trace output of hardware.c module +# The key is masked off if EnableDebug is false +# valid value : true, false +HwDebug = false + +# The sub-key to enable/disable trace output of userial module +# The key is masked off if EnableDebug is false +# valid value : true, false +UserialDebug = false + +# The sub-key to enable/disable trace output of Transport (e.g. H4) module +# The key is masked off if EnableDebug is false +# valid value : true, false +HciDebug = false + +# The sub-key to enable/disable trace output of upio module +# The key is masked off if EnableDebug is false +# valid value : true, false +UpioDebug = false + +# The sub-key to enable/disable debugging in BtSnoop module +# The key is masked off if EnableDebug is false +# valid value : true, false +BtSnoopDebug = false |