Merge "uwb(hal): Add a new capability TLV for supported rng ntf thresholds" into tm-mainline-prod

This commit is contained in:
TreeHugger Robot 2022-06-23 18:55:10 +00:00 committed by Android (Google) Code Review
commit fee00f3fdf
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,
}