uwb(hal): Add a new capability TLV for supported rng ntf thresholds

Bug: 235355249
Test: Compiles
Merged-In: I44dd28b0b3ff5cfe6bf227e4cad917edfce10262
Change-Id: I44dd28b0b3ff5cfe6bf227e4cad917edfce10262
This commit is contained in:
Roshan Pius
2022-06-22 09:56:11 -07:00
parent 4c0fffb0ab
commit 745c36cb74
2 changed files with 9 additions and 0 deletions

View File

@@ -45,4 +45,5 @@ enum UwbVendorCapabilityTlvTypes {
CCC_SUPPORTED_RAN_MULTIPLIER = 167,
SUPPORTED_AOA_RESULT_REQ_ANTENNA_INTERLEAVING = 227,
SUPPORTED_MIN_RANGING_INTERVAL_MS = 228,
SUPPORTED_RANGE_DATA_NTF_CONFIG = 229,
}

View File

@@ -155,4 +155,12 @@ enum UwbVendorCapabilityTlvTypes {
* 4 byte value to indicate supported min ranging interval in ms.
*/
SUPPORTED_MIN_RANGING_INTERVAL_MS = 0xE4,
/**
* 4 byte bitmask to indicate the supported RANGE_DATA_NTF_CONFIG values
*
* Bitmask where each bit corresponds to values used in
* RANGE_DATA_NTF_CONFIG in SET_APP_CFG_CMD
*/
SUPPORTED_RANGE_DATA_NTF_CONFIG = 0xE5,
}