VelocAI logo Bluetooth Explorer Documentation

Bluetooth GATT Characteristic Reference

Indoor Positioning Configuration (0x2AAD)

org.bluetooth.characteristic.indoor_positioning_configuration

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.

PropertyValue
NameIndoor Positioning Configuration
UUID0x2AAD
Typeorg.bluetooth.characteristic.indoor_positioning_configuration
XML RootCharacteristic
Source Fileorg.bluetooth.characteristic.indoor_positioning_configuration.xml
Field Count1

Field Specification

Parsed field definitions from the source XML value structure.

Field Requirement Format Unit Exponent Notes
Indoor Positioning ConfigurationMandatoryuint8---

Bit Map

Bit-level enumerations extracted from the XML BitField definition.

Field Bit Size Name 0 Means 1 Means
Indoor Positioning Configuration01Presence of coordinates in advertising packetsCoordinates are not presentCoordinates are present
Indoor Positioning Configuration11Coordinate system used in advertising packetsWGS84 coordinate systemLocal coordinate system
Indoor Positioning Configuration21Presence of Tx Power field in advertising packetsTx Power is not presentTx Power is not present
Indoor Positioning Configuration31Presence of Altitude field in advertising packetsAltitude is not presentAltitude is present
Indoor Positioning Configuration41Presence of Floor Number in advertising packetsFloor Number is not presentFloor Number is present
Indoor Positioning Configuration51Location Name available in the GATT databaseLocation Name is not presentLocation 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.