Add a Vendor-dependent UCI Reason code for UWB OFF

Add a UCI reason code (sent in a SESSION_STATUS_NTF) for the 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: I52d9f2dae203c3e2d3d26a8a5c30a2f2a969b591
This commit is contained in:
Ayush Jain 2023-03-01 22:57:12 +00:00
parent f7ad0fb1c0
commit ff9268b13b
2 changed files with 5 additions and 2 deletions

View file

@ -35,4 +35,5 @@ package android.hardware.uwb.fira_android;
@Backing(type="int") @VintfStability
enum UwbVendorReasonCodes {
REASON_ERROR_INVALID_CHANNEL_WITH_AOA = 128,
REASON_REGULATION_UWB_OFF = 129,
}

View file

@ -24,11 +24,13 @@ package android.hardware.uwb.fira_android;
@Backing(type="int")
enum UwbVendorReasonCodes {
/**
* Use values from the vendor specific reason code range: 0x80 0xFF defined in Table 16 of
* UCI specification.
* Use values from the vendor specific reason code range: 0x80 0xFF defined in
* Table 15 (state change with reason codes) of UCI specification.
*/
/** Fira specific */
/** The channel requested is not available for AoA */
REASON_ERROR_INVALID_CHANNEL_WITH_AOA = 0x80,
/** UWB has been disabled (eg: country code change leads to UWB unsupported) */
REASON_REGULATION_UWB_OFF = 0x81,
}