diff options
author | Jakub Pawlowski <jpawlowski@google.com> | 2021-08-30 20:56:25 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2021-08-30 20:56:25 +0000 |
commit | 30e401f95a23726535878f10e2c14186ca638e1e (patch) | |
tree | e7fa93310a275c6b937b51840a0d5b0718685e93 /framework/java/android/bluetooth/BluetoothProfile.java | |
parent | 94b2b91616eaf4a8627070a646e9d513b194d498 (diff) | |
parent | fd45c86706760a0ba2d77413e32b9c12806cb3af (diff) |
Merge "csip: Add constants for the Coordinated Set Identification Profile"
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 bea32abd06..c4649b4276 100644 --- a/framework/java/android/bluetooth/BluetoothProfile.java +++ b/framework/java/android/bluetooth/BluetoothProfile.java @@ -229,12 +229,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 |