Part Number:CC2640R2F
Can you change the BLE CompID from LL_VERSION_IND on simple_central in Simplelink SDK BLE?
There is some mention of the parameter here: https://e2e.ti.com/support/wireless_connectivity/bluetooth_low_energy/f/538/t/541842?LL-VERSION-IND but we could not find it in later Simplelink SDK BLE projects.
Backtracking, the closest parameter we found was TI_COMPANY_ID, but in SimpleLink SDK BLE Plugin projects like temperature_sensor_broadcast :
/* Company Identifier: Texas Instruments Inc. (13) */
#define TI_COMPANY_ID 0x000D
#define TI_ST_DEVICE_ID 0x03
#define TI_ST_KEY_DATA_ID 0x00
/* Advertisement Data */
static uint8_t advertData[] = {
0x02, /* Length of this data */
SAP_GAP_ADTYPE_FLAGS, DEFAULT_DISCOVERABLE_MODE
| SAP_GAP_ADTYPE_FLAGS_BREDR_NOT_SUPPORTED,
/* Manufacturer specific advertising data */
0x06,
0xFF, /* GAP_ADTYPE_MANUFACTURER_SPECIFIC, */
LO_UINT16(TI_COMPANY_ID), HI_UINT16(TI_COMPANY_ID), TI_ST_DEVICE_ID,
TI_ST_KEY_DATA_ID,
0x00 };
But these do match the BT SIG definitions:
https://www.bluetooth.com/specifications/assigned-numbers/link-layer and https://www.bluetooth.com/specifications/assigned-numbers/company-identifiers
Where do we define and how do we change LL_VERSION_IND ?
/* Company Identifier: Texas Instruments Inc. (13) */
#define TI_COMPANY_ID 0x000D
#define TI_ST_DEVICE_ID 0x03
#define TI_ST_KEY_DATA_ID 0x00