CoreBluetooth advertisement RAW data

Hi.

My question about the CoreBluetooth advertisement data is:

I want to evaluate the data, but I do not come to the raw data, but only to the defined key.

     CBAdvertisementDataLocalNameKey

     CBAdvertisementDataManufacturerDataKey

     CBAdvertisementDataServiceDataKey

     CBAdvertisementDataServiceUUIDsKey

     CBAdvertisementDataOverflowServiceUUIDsKey

     CBAdvertisementDataTxPowerLevelKey

     CBAdvertisementDataIsConnectable

     CBAdvertisementDataSolicitedServiceUUIDsKey

What about the Flags?

Flags Advertising Data Type

This packet has data type 0x01 indicating various flags. The length is 2 because there are two bytes, the data type and the actual flag value.

The flag value has several bits indicating the capabilities of the iBeacon:

Bit0 – Indicates LE Limited Discoverable Mode

Bit1 – Indicates LE General Discoverable Mode


Can I evaluate them?

Or did I have no access to this?


In the Apple documentation for CoreBluetooth it says in the advertisement are any data included?


Instance Method

centralManager:didDiscoverPeripheral:advertisementData:RSSI:


Invoked when the central manager discovers a peripheral while scanning.


Parameters

     central    
The central manager providing the update.
     peripheral    
The discovered peripheral.
     advertisementData    
A dictionary containing any advertisement data.
     RSSI    
The current received signal strength indicator (RSSI) of the peripheral, in decibels.What can i do?


CoreBluetooth advertisement RAW data
 
 
Q