summaryrefslogtreecommitdiffstats
path: root/device
diff options
context:
space:
mode:
Diffstat (limited to 'device')
-rwxr-xr-xdevice/src/controller.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/device/src/controller.c b/device/src/controller.c
index e90b4132d..da739cd7f 100755
--- a/device/src/controller.c
+++ b/device/src/controller.c
@@ -109,6 +109,12 @@ static future_t *start_up(void) {
packet_parser->parse_generic_command_complete(response);
+ #ifdef QLOGKIT_USERDEBUG
+ /* Enable SOC Logging */
+ UINT8 param[5] = {0x10,0x03,0x00,0x00,0x01};
+ BTM_VendorSpecificCommand(HCI_VS_HOST_LOG_OPCODE,5,param,NULL);
+ #endif
+
// Read the local version info off the controller next, including
// information such as manufacturer and supported HCI version
response = AWAIT_COMMAND(packet_factory->make_read_local_version_info());