uwb(hal): Switch ANDROID GID to 0xC

Based on vendor feedback since 0xE is already being used for a bunch of
vendor specific stuff.

Bug: 210933436
Bug: 218883784
Test: Compiles
Change-Id: I49b5018569164a52fa7c9f78ca9c69a181747f44
This commit is contained in:
Roshan Pius
2022-02-10 10:54:31 -08:00
parent 2f5c79713c
commit 8db34352b7
3 changed files with 3 additions and 2 deletions

View File

@@ -34,5 +34,5 @@
package android.hardware.uwb.fira_android;
@Backing(type="byte") @VintfStability
enum UwbVendorGids {
ANDROID = 14,
ANDROID = 12,
}

View File

@@ -19,6 +19,7 @@ package android.hardware.uwb.fira_android;
/**
* Android specific vendor command OIDs should be defined here.
*
* For use with Android GID - 0xC.
*/
@VintfStability
@Backing(type="byte")

View File

@@ -32,5 +32,5 @@ enum UwbVendorGids {
*/
/** All Android specific commands/response/notification should use this GID */
ANDROID = 0xE,
ANDROID = 0xC,
}