Provisioning BLE: Add API to set manufacturer data in scan response
- Add `wifi_prov_scheme_ble_set_mfg_data` API to set custom manufacturer data in BLE advertisements. - Run format.sh script on modified files. - Fix few typos in `protocomm_nimble.c`. - Incorporate suggestion to remove extra check on protocomm_ble_mfg_data_len - Remove few unnecessary comments.
This commit is contained in:
@@ -26,6 +26,14 @@ extern "C" {
|
||||
*/
|
||||
#define MAX_BLE_DEVNAME_LEN 29
|
||||
#define BLE_UUID128_VAL_LENGTH 16
|
||||
/**
|
||||
* Theoretically, the limit for max manufacturer length remains same as BLE
|
||||
* device name i.e. 31 bytes (max scan response size) - 1 byte (length) - 1
|
||||
* byte (type) = 29 bytes
|
||||
* However, manufacturer data goes along with BLE device name in scan response.
|
||||
* So, it is important to understand the actual length should be smaller than
|
||||
* (29 - (BLE device name length) - 2). */
|
||||
#define MAX_BLE_MANUFACTURER_DATA_LEN 29
|
||||
|
||||
/**
|
||||
* @brief This structure maps handler required by protocomm layer to
|
||||
@@ -59,6 +67,16 @@ typedef struct protocomm_ble_config {
|
||||
*/
|
||||
uint8_t service_uuid[BLE_UUID128_VAL_LENGTH];
|
||||
|
||||
/**
|
||||
* BLE device manufacturer data pointer in advertisement
|
||||
*/
|
||||
uint8_t *manufacturer_data;
|
||||
|
||||
/**
|
||||
* BLE device manufacturer data length in advertisement
|
||||
*/
|
||||
ssize_t manufacturer_data_len;
|
||||
|
||||
/**
|
||||
* Number of entries in the Name-UUID lookup table
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user