diff options
author | Jakub Pawlowski <jpawlowski@google.com> | 2021-08-30 21:10:26 +0000 |
---|---|---|
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | 2021-08-30 21:10:26 +0000 |
commit | efd896722ebd5b315542b36dcc5f45b7bf1d4714 (patch) | |
tree | 0b0d8fc32f98b323a380ad9dd5dfbc7b66fdbf27 /framework/java/android/bluetooth/BluetoothProfile.java | |
parent | 35b520c82926bfb58561e87cf549e14ab494ed7b (diff) | |
parent | 30e401f95a23726535878f10e2c14186ca638e1e (diff) |
Merge "csip: Add constants for the Coordinated Set Identification Profile" am: 30e401f95a
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1807297
Change-Id: I707c1fdd5831763a3bcdfa819e61ea3b01707110
Diffstat (limited to 'framework/java/android/bluetooth/BluetoothProfile.java')
-rw-r--r-- | framework/java/android/bluetooth/BluetoothProfile.java | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/framework/java/android/bluetooth/BluetoothProfile.java b/framework/java/android/bluetooth/BluetoothProfile.java index 5b67a75a2b..0cf9f9fd6f 100644 --- a/framework/java/android/bluetooth/BluetoothProfile.java +++ b/framework/java/android/bluetooth/BluetoothProfile.java @@ -227,12 +227,18 @@ public interface BluetoothProfile { int MCP_SERVER = 24; /** + * Coordinated Set Identification Profile set coordinator + * + */ + int CSIP_SET_COORDINATOR = 25; + + /** * Max profile ID. This value should be updated whenever a new profile is added to match * the largest value assigned to a profile. * * @hide */ - int MAX_PROFILE_ID = 24; + int MAX_PROFILE_ID = 25; /** * Default priority for devices that we try to auto-connect to and |