In some modes I want to use a random static addresses (BLE privacy disabled) and in some modes I wand to use private resolvable addresses (BLE privacy enabled). The aci_gap_init function seems to force you to declare if BLE privacy is on or off. Ho...
I am trying to send a BLE notification after I have connected. I add the characteristic this way. retVal = aci_gatt_add_char(serviceHandle,
UUID_TYPE_128,
(const Char_UUID_t *)Uuid,
...
Check out the header file that contains the prototype, it explains the options. /**
* @brief ACI_GATT_UPDATE_CHAR_VALUE_EXT
* This command is a more flexible version of ACI_GATT_UPDATE_CHAR_VALUE to
* support update of long attribute up to 512 by...