1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
use *;
use crateBufExt;
use ;
/// This command is used to read the advertising features supported
/// by the controller and stack. The `max_adv_data_len` and `max_scan_rsp_len` provides extra
/// information about the maximum length of the data fields. For
/// now this will always return the value 31. Different flags
/// however might decrease the actual available length in these
/// data fields.
pub async
/// This command is used to configure an advertising instance that
/// can be used to switch a Bluetooth Low Energy controller into
/// advertising mode.
///
/// Added advertising information with this command will not be visible
/// immediately if advertising is enabled via the Set Advertising
/// command. The usage of the Set Advertising command takes precedence
/// over this command. Instance information is stored and will be
/// advertised once advertising via Set Advertising has been disabled.
///
/// The Instance identifier is a value between 1 and the number of
/// supported instances. The value 0 is reserved.
/// When the connectable flag is set, then the controller will use
/// undirected connectable advertising. The value of the connectable
/// setting can be overwritten this way. This is useful to switch a
/// controller into connectable mode only for LE operation. This is
/// similar to the mode 0x02 from the Set Advertising command.
///
/// Secondary channel flags can be used to advertise in secondary
/// channel with the corresponding PHYs. These flag bits are mutually
/// exclusive and setting multiple will result in Invalid Parameter
/// error. Choosing either LE 1M or LE 2M will result in using
/// extended advertising on the primary channel with LE 1M and the
/// respectively LE 1M or LE 2M on the secondary channel. Choosing
/// LE Coded will result in using extended advertising on the primary
/// and secondary channels with LE Coded. Choosing none of these flags
/// will result in legacy advertising.
///
/// If only one advertising Instance has been added, then the `duration`
/// value will be ignored. It only applies for the case where multiple
/// Instances are configured. In that case every Instance will be
/// available for the `duration` time and after that it switches to
/// the next one. This is a simple round-robin based approach.
///
/// When a `timeout` is provided, then the `duration` subtracts from
/// the actual `timeout` value of that Instance. For example an Instance
/// with `timeout` of 5 and `duration` of 2 will be scheduled exactly 3
/// times, twice with 2 seconds and once with one second. Other
/// Instances have no influence on the `timeout`.
///
/// Re-adding an already existing instance (i.e. issuing the Add
/// Advertising command with an Instance identifier of an existing
/// instance) will update that instance's configuration.
///
/// An instance being added or changed while another instance is
/// being advertised will not be visible immediately but only when
/// the new/changed instance is being scheduled by the round robin
/// advertising algorithm.
///
/// Changes to an instance that is currently being advertised will
/// cancel that instance and switch to the next instance. The changes
/// will be visible the next time the instance is scheduled for
/// advertising. In case a single instance is active, this means
/// that changes will be visible right away.
///
/// A pre-requisite is that LE is already enabled, otherwise this
/// command will return a "rejected" response.
///
/// This command can be used when the controller is not powered and
/// all settings will be programmed once powered.
pub async
/// This command is used to remove an advertising instance that
/// can be used to switch a Bluetooth Low Energy controller into
/// advertising mode.
///
/// When the `instance` parameter is zero, then all previously added
/// advertising Instances will be removed.
///
/// Removing advertising information with this command will not be
/// visible as long as advertising is enabled via the Set Advertising
/// command. The usage of the Set Advertising command takes precedence
/// over this command. Changes to Instance information are stored and
/// will be advertised once advertising via Set Advertising has been
/// disabled.
///
/// Removing an instance while it is being advertised will immediately
/// cancel the instance, even when it has been advertised less then its
/// configured Timeout or Duration.
///
/// This command can be used when the controller is not powered and
/// all settings will be programmed once powered.
pub async
/// The Read Advertising Features command returns the overall maximum
/// size of advertising data and scan response data fields. That size is
/// valid when no Flags are used. However when certain Flags are used,
/// then the size might decrease. This command can be used to request
/// detailed information about the maximum available size.
///
/// To get accurate information about the available size, the same `flags`
/// values should be used with the Add Advertising command.
///
/// The `max_adv_data_len` and `max_scan_rsp_len` fields provide information
/// about the maximum length of the data fields for the given `flags`
/// values. When the `flags` field is zero, then these fields would contain
/// the same values as Read Advertising Features.
pub async