Coverage for src / bluetooth_sig / gatt / characteristics / ranging_data_overwritten.py: 100%
7 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-03 16:41 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-03 16:41 +0000
1"""Ranging Data Overwritten characteristic (0x2C19).
3Per RAS v1.0 §3.5, Table 3.15: contains only the Ranging Counter (uint16)
4of the CS Ranging Data that was overwritten.
6References:
7 Bluetooth SIG Ranging Service v1.0, Section 3.5
8"""
10from __future__ import annotations
12from ...types.gatt_enums import CharacteristicRole
13from .base import BaseCharacteristic
14from .templates import Uint16Template
17class RangingDataOverwrittenCharacteristic(BaseCharacteristic[int]):
18 """Ranging Data Overwritten characteristic (0x2C19).
20 org.bluetooth.characteristic.ranging_data_overwritten
22 Indicates that ranging data has been overwritten.
23 The value is the Ranging Counter of the overwritten CS Procedure.
24 """
26 _manual_role = CharacteristicRole.STATUS
27 _template = Uint16Template()