You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Unless otherwise specified, all methods are allowed in all link layer states
193
193
// Callback constraints:
194
194
// Unless otherwise specified, methods do not by default result in any callbacks on the response service
195
-
// When a callback is specified for a method and only for that method, next of the same method call is not allowed until the callback has been received
195
+
// When a callback is specified for a method and only for that method, another call of the same method is not allowed until the callback has been received.
196
196
// When a callback is specified for more than one method, any of the associated method calls is not allowed until the callback for the previous call have been received
// Formatting of advertisement data is as per Bluetooth Core Specification.
219
219
// TODO: Include ble spec reference
220
-
// Maximum advertisement data length is 28 bytes. Server adds 3 more bytes of flags data with the flag bits 'LE General Discoverable Mode' and 'BR/EDR Not Supported' enabled.
220
+
// Maximum advertisement data length for this method is 28 bytes. Server reserves 3 bytes for flags data with the flag bits 'LE General Discoverable Mode' and 'BR/EDR Not Supported' enabled.
221
221
// Server will not check validity of the advertisement data and only maximum length of each field will be passed to BLE stack
222
+
// If not set by this method, server will have aa advertisement data only flags field.
// Formatting of scan response data is as per Bluetooth Core Specification.
226
227
// TODO: Include ble spec reference
227
-
// Maximum scan response length is 13 bytes. Server reserves 18 bytes for streaming service uuids. Scan Response is only possible with scannable advertisements
228
+
// Maximum scan response length for this method is 13 bytes. Server reserves 18 bytes for streaming service uuids. Scan Response is only possible with scannable advertisements
228
229
// Server will not check validity of the scan response data and only maximum length of each field will be passed to BLE stack
230
+
// If not set by this method, server will have as scan response data only service uuids.
0 commit comments