Hello Luiz,
I was playing with latest sources (git) and experimental features
enabled in order to:
- perform a BLE scan
- find AdvertisingData (in particularly the BT_AD_INDOOR_POSITIONING (0x25))
I found that:
- once scanning is done org.bluez.Device1.AdvertisingData is correctly
set to the expected value (the one advertised)
- yet, there was no PropertiesChanged signal corresponding to this
AdvertisingData property update (despite I received PropertiesChanged
for RSSI)
Indeed src/device.c:: add_data() performs a particular filtering to only
signal EIR_TRANSPORT_DISCOVERY data.
static void add_data(void *data, void *user_data)
{
struct eir_ad *ad = data;
struct btd_device *dev = user_data;
if (!bt_ad_add_data(dev->ad, ad->type, ad->data, ad->len))
return;
if (ad->type == EIR_TRANSPORT_DISCOVERY)
g_dbus_emit_property_changed(dbus_conn, dev->path,
DEVICE_INTERFACE,
"AdvertisingData");
}
Is there a particular reason for this behavior ?
Regards,
Arnaud