Where to get the 'Broadcom Blueototh profile pack for Windows (BTW)'

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

Hi,

  In the SDK2.1.1, there is an app 'Hello_Sensor', the peer app on windows platform need 'BTW LE version' , looking for ' BluetoothApis.dll ', ' BTWLeApi.Dll' , 'btrez.dll', However the latest version of BTW ( BTW_6_1_0_1506_SDK ) , does not really contain all these dll, Could you check where to get those DLL ?

Thanks!

See the code from the SDK:

else if (IsOSWin7())

  {

  dlg.m_bWin8 = FALSE;

        TCHAR BtDevFullPath[MAX_PATH+1] = { '\0' };

        CBTFullLibPath LibPath;

        LibPath.GetFullInstallPathOf(L"BTWLeApi.Dll", BtDevFullPath, MAX_PATH);

        if ((hLib = LoadLibrary(BtDevFullPath)) == NULL)

  {

  MessageBox(NULL, L"Broadcom Blueototh profile pack for Windows (BTW) has to be installed", L"Error", MB_OK);

  return FALSE;

  }

        BtwGuidFromGuid(&guidSvcHello, &UUID_HELLO_SERVICE);

        BtwGuidFromGuid(&guidCharHelloConfig, &UUID_HELLO_CHARACTERISTIC_CONFIG);

        BtwGuidFromGuid(&guidCharHelloNotify, &UUID_HELLO_CHARACTERISTIC_NOTIFY);

  }

0 Likes
1 Solution
2 Replies