VelocAI logo Bluetooth Explorer Documentation

Bluetooth GATT Characteristic Reference

Bond Management Features (0x2AA5)

org.bluetooth.characteristic.bond_management_feature

Bond Management Features is defined in the Bluetooth GATT XML specification with type org.bluetooth.characteristic.bond_management_feature and UUID 0x2AA5.

Quick Summary

Payload length is 3 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
NameBond Management Features
UUID0x2AA5
Typeorg.bluetooth.characteristic.bond_management_feature
XML RootCharacteristic
Source Fileorg.bluetooth.characteristic.bond_management_feature.xml
Field Count1

Field Specification

Parsed field definitions from the source XML value structure.

Field Requirement Format Unit Exponent Notes
Bond Management FeaturesMandatory24bit--Byte Order - LSO...MSO

Bit Map

Bit-level enumerations extracted from the XML BitField definition.

Field Bit Size Name 0 Means 1 Means
Bond Management Features01Delete Bond of current connection (BR/EDR and LE) supportedfalsetrue
Bond Management Features11Authorization Code required for feature abovefalsetrue
Bond Management Features21Delete bond of current connection (BR/EDR transport only) supportedfalsetrue
Bond Management Features313 Authorization Code required for feature abovefalsetrue
Bond Management Features41Delete bond of current connection (LE transport only) supportedfalsetrue
Bond Management Features51Authorization Code required for feature abovefalsetrue
Bond Management Features61Remove all bonds on server (BR/EDR and LE) supportedfalsetrue
Bond Management Features71Authorization Code required for feature abovefalsetrue
Bond Management Features81Remove all bonds on server (BR/EDR transport only) supportedfalsetrue
Bond Management Features91Authorization Code required for feature abovefalsetrue
Bond Management Features101Remove all bonds on server (LE transport only) supportedfalsetrue
Bond Management Features111Authorization Code required for feature abovefalsetrue
Bond Management Features121Remove all but the active bond on server (BR/EDR and LE) supportedfalsetrue
Bond Management Features131Authorization Code required for feature abovefalsetrue
Bond Management Features141Remove all but the active bond on server (BR/EDR transport only) supportedfalsetrue
Bond Management Features151Authorization Code required for feature abovefalsetrue
Bond Management Features161Remove all but the active bond on server (LE transport only) supportedfalsetrue
Bond Management Features171Authorization Code required for feature abovefalsetrue
Bond Management Features181Identify yourself supportedfalsetrue
Bond Management Features231Feature Extensionfalsetrue

Byte Layout and Decode

Payload length is 3 bytes.

function decodePayload(dataView, offset = 0) {
  // Parse bond_management_features (24bit) according to Bluetooth format rules.
  return { bond_management_features };
}

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 Bond Management Features in Bluetooth GATT?

Bond Management Features is defined as a Bluetooth GATT characteristic entry with type org.bluetooth.characteristic.bond_management_feature and UUID 0x2AA5.

What UUID identifies Bond Management Features?

The UUID for Bond Management Features is 0x2AA5.

How should I parse Bond Management Features?

Payload length is 3 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.