Bluetooth GATT Characteristic Reference
Indoor Positioning Configuration (0x2AAD)
The Indoor Positioning Configuration describes the set of characteristic values included in the Indoor Positioning Service AD type.
Quick Summary
Payload length is 1 bytes. This page is generated from official GATT XML and presented as implementation-ready guidance.
At a Glance
Key reference details for BLE implementation, interoperability testing, and AI-assisted troubleshooting.
| Property | Value |
|---|---|
| Name | Indoor Positioning Configuration |
| UUID | 0x2AAD |
| Type | org.bluetooth.characteristic.indoor_positioning_configuration |
| XML Root | Characteristic |
| Source File | org.bluetooth.characteristic.indoor_positioning_configuration.xml |
| Field Count | 1 |
Field Specification
Parsed field definitions from the source XML value structure.
| Field | Requirement | Format | Unit | Exponent | Notes |
|---|---|---|---|---|---|
| Indoor Positioning Configuration | Mandatory | uint8 | - | - | - |
Bit Map
Bit-level enumerations extracted from the XML BitField definition.
| Field | Bit | Size | Name | 0 Means | 1 Means |
|---|---|---|---|---|---|
| Indoor Positioning Configuration | 0 | 1 | Presence of coordinates in advertising packets | Coordinates are not present | Coordinates are present |
| Indoor Positioning Configuration | 1 | 1 | Coordinate system used in advertising packets | WGS84 coordinate system | Local coordinate system |
| Indoor Positioning Configuration | 2 | 1 | Presence of Tx Power field in advertising packets | Tx Power is not present | Tx Power is not present |
| Indoor Positioning Configuration | 3 | 1 | Presence of Altitude field in advertising packets | Altitude is not present | Altitude is present |
| Indoor Positioning Configuration | 4 | 1 | Presence of Floor Number in advertising packets | Floor Number is not present | Floor Number is present |
| Indoor Positioning Configuration | 5 | 1 | Location Name available in the GATT database | Location Name is not present | Location Name is present |
Byte Layout and Decode
Payload length is 1 bytes.
function decodePayload(dataView, offset = 0) {
const indoor_positioning_configuration = dataView.getUint8(offset + 0);
return { indoor_positioning_configuration };
}
Use Cases and Integration Notes
BLE Telemetry
Map characteristic values into dashboards and alerts for device observability.
Firmware Regression
Compare decoded fields across builds to detect protocol or scaling changes.
App Integration
Build stable parsing paths that convert raw payloads into typed app models.
Implementation Checklist
- Validate payload length and mandatory fields before decode.
- Decode with Bluetooth-specified signedness, unit, and exponent handling.
- Convert units at presentation boundaries to avoid drift in business logic.
- Persist raw packets and decoded values for reproducible troubleshooting.
FAQ
What is Indoor Positioning Configuration in Bluetooth GATT?
Indoor Positioning Configuration is defined as a Bluetooth GATT characteristic entry with type org.bluetooth.characteristic.indoor_positioning_configuration and UUID 0x2AAD.
What UUID identifies Indoor Positioning Configuration?
The UUID for Indoor Positioning Configuration is 0x2AAD.
How should I parse Indoor Positioning Configuration?
Payload length is 1 bytes.
Where does this definition come from?
This page is generated from the Bluetooth SIG mirror XML in the oesmith/gatt-xml repository.
How does this page support BLE implementation?
The page combines structured tables, practical Q&A, and JSON-LD metadata to help teams validate integrations and troubleshoot consistently.