diff options
author | Ćukasz Rymanowski <lukasz.rymanowski@codecoup.pl> | 2021-08-23 12:01:47 +0000 |
---|---|---|
committer | Jakub Tyszkowski <jakub.tyszkowski@codecoup.pl> | 2021-08-24 08:35:01 +0000 |
commit | fd45c86706760a0ba2d77413e32b9c12806cb3af (patch) | |
tree | 70952b4d5387262bdd2cfae17e0aae47a8480b12 /framework/java/android/bluetooth/BluetoothProfile.java | |
parent | 090f3a9b177596dd532fa99f03471bd0023ce818 (diff) |
csip: Add constants for the Coordinated Set Identification Profile
Bug: 150670922
Tag: #feature
Test: compilation
Sponsor: jpawlowski@
Change-Id: I331fe270b75f306d57a15933ab4afa2e48c8bf50
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 |