Part Number: MSP432P401R
Other Parts Discussed in Thread: CC2650MODA, CC2650
Hi,
I am using MSP432 as my application processor to interface with CC2650MODA as the Simple NP, and SimpleLink SDK BLE Plugin version 1.40.00.42.
I noticed in the Project Zero example that there are 5 bytes of manufacturing-specific advertisement data.
static uint8_t advertData[] = {
0x02, /* Length */
SAP_GAP_ADTYPE_FLAGS,
DEFAULT_DISCOVERABLE_MODE | SAP_GAP_ADTYPE_FLAGS_BREDR_NOT_SUPPORTED,
/* Manufacturer specific advertising data */
0x06,
0xFF, /* SAP_GAP_ADTYPE_MANUFACTURER_SPECIFIC */
LO_UINT16(BLE_COMPANY_ID), HI_UINT16(BLE_COMPANY_ID),
BLE_ST_DEVICE_ID,
BLE_ST_KEY_DATA_ID,
0x00 /* Key state */
};
What are the BLE_ST_DEVICE_ID, BLE_ST_KEY_DATA_ID, and "Key state" used for?
Thanks,
Jeffrey