Add new capability TLV for supported RSSI reporting

Test: Compile
Bug: 236720553
Merged-In: Iae490f193c7e613ef8c9ee03784563b3286182bb
Change-Id: Iae490f193c7e613ef8c9ee03784563b3286182bb
This commit is contained in:
ziyiw
2022-06-24 22:12:53 +00:00
committed by Roshan Pius
parent 745c36cb74
commit 8ad4251bbb
2 changed files with 9 additions and 0 deletions

View File

@@ -46,4 +46,5 @@ enum UwbVendorCapabilityTlvTypes {
SUPPORTED_AOA_RESULT_REQ_ANTENNA_INTERLEAVING = 227,
SUPPORTED_MIN_RANGING_INTERVAL_MS = 228,
SUPPORTED_RANGE_DATA_NTF_CONFIG = 229,
SUPPORTED_RSSI_REPORTING = 230,
}

View File

@@ -163,4 +163,12 @@ enum UwbVendorCapabilityTlvTypes {
* RANGE_DATA_NTF_CONFIG in SET_APP_CFG_CMD
*/
SUPPORTED_RANGE_DATA_NTF_CONFIG = 0xE5,
/**
* 1 byte bitmask to indicate the supported RSSI_REPORTING values
* Values:
* 1 - Feature supported.
* 0 - Feature not supported.
*/
SUPPORTED_RSSI_REPORTING = 0xE6,
}