Add a Vendor dependent UCI Status code for UWB OFF

Add a UCI status code for scenario when UWB needs to be turned off due
to Regulatory reasons.

Ran the "m android.hardware.uwb.fira_android-update-api" command to
update the generated AIDL API.

Bug: 267554906
Test: Compile make.com.google.android.uwb
Change-Id: I5f86007776479fefe2d3b3e36d16ef628f92cebd
This commit is contained in:
Ayush Jain
2023-03-01 19:39:42 +00:00
parent f7ad0fb1c0
commit 3f884a8b91
2 changed files with 3 additions and 0 deletions

View File

@@ -36,4 +36,5 @@ package android.hardware.uwb.fira_android;
enum UwbVendorStatusCodes {
STATUS_ERROR_CCC_SE_BUSY = 80,
STATUS_ERROR_CCC_LIFECYCLE = 81,
STATUS_REGULATION_UWB_OFF = 82,
}

View File

@@ -33,4 +33,6 @@ enum UwbVendorStatusCodes {
STATUS_ERROR_CCC_SE_BUSY = 0x50,
/** CCC Lifecycle error */
STATUS_ERROR_CCC_LIFECYCLE = 0x51,
/** UWB Regulation Off */
STATUS_REGULATION_UWB_OFF = 0x52,
}