This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS/LAUNCHXL-CC2640R2: cc

Part Number: LAUNCHXL-CC2640R2
Other Parts Discussed in Thread: CC2564, CC2640R2F

Tool/software: Code Composer Studio

hi, 

I want to ask if anyone had worked with the board LAUNCHXL-cc2640R2 BLE, Sensor BoosterPack (BOOSTXL-SENSORS) and IEEE 11073 standard.
does anyone have an idea how can you download the IEEE standard on this board ??

I want to connect the board with app smartphone.

thanks

  • Hi Malek,

    When referring to the IEEE 1073 standard, I believe you are referring to the Health Device Profile ( www.bluetooth.com/.../health-device-profile )? This is a classic profile (BR/EDR) that isn't supported by BLE. The CC2564 does have support for this since it is a dual mode BT+BLE stack: www.ti.com/.../TIBLUETOOTHSTACK-SDK

    The CC2640R2's stack supports BLE 4.2/5.0 and provides the GATT profiles listed by the spec: www.bluetooth.com/.../gatt .
    In the SDK these profiles are located in the following file path: <your SDK folder>\source\ti\blestack\profiles
    Here you'll find profiles that are relevant to your application (e.g. blood pressure, heart rate, glucose, thermometer, etc.)

    There are also examples that use the GATT profiles for Heart Rate and Glucose available in the example pack: dev.ti.com/.../

    -Sy Su
  • hi Sy Su,
    yes it's right, it relates to Personal Health devices, I've tried the example of Heart Rate Sensor, I could not see on App BLE Scaner.

    again I work with the Sensor BoosterPack which has only 5 sensors on it (light Sensor, Temperature Sensor, Geomagnetic Sensor, Interial Measurement,pressure). the question is, can I have the BLE Protokoll Stack and IEEE Protokoll Stack both on the board ??
    BLE scanner app is enough, or should I develop my own app

    thanks
    Malek
  • Malek,

    If you look into the included documentation with the Heart Rate Sensor example, it says that you will need to press BTN-1 in order for the device to start advertising. Refer to the "Usage" section: dev.ti.com/.../

    I would suggest you look at the following example to give you guidance in your application in using the Sensor BoosterPack with the CC2640R2F: dev.ti.com/.../ble_02_thermostat.html

    As I have mentioned before in my previous post, the IEEE 1073 Standard (which you refer to is as the IEEE Stack) is the Health Device Profile. This is a Bluetooth Classic only profile which means it will not work with the BLE stack for the CC2640R2F. Your alternative is to implement this profile by creating your own custom profile. There is a training on creating a custom profile available here: dev.ti.com/.../ble_01_custom_profile.html

    Or your can use the BLE GATT profiles that are defined in the spec to work with your application. As mentioned before, In the SDK these profiles are located in the following file path: <your SDK folder>\source\ti\blestack\profiles
    Here you'll find profiles that are relevant to your application (e.g. blood pressure, heart rate, glucose, thermometer, etc.)

    -Sy Su