mirror of
https://github.com/bluekitchen/btstack.git
synced 2024-12-29 09:26:08 +00:00
create service search pattern from uuid16 fix
This commit is contained in:
parent
0f35d59dc6
commit
a8c5ee2406
@ -145,6 +145,6 @@ public class Util {
|
||||
}
|
||||
|
||||
public static byte[] serviceSearchPatternForUUID16(int uuid){
|
||||
return new byte[] {(byte)0x35, (byte)0x03, (byte)0x19, 0, 0,(byte) (uuid >> 8), (byte) (uuid & 0xff)};
|
||||
return new byte[] {(byte)0x35, (byte)0x03, (byte)0x19, (byte) (uuid >> 8), (byte) (uuid & 0xff)};
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user