Select one of the symbols to view example projects that use it.
 
Outline
#include "openthread-core-config.h"
#include "instance/instance.hpp"
otLinkGetChannel(otInstance *)
otLinkSetChannel(otInstance *, uint8_t)
otLinkGetSupportedChannelMask(otInstance *)
otLinkSetSupportedChannelMask(otInstance *, uint32_t)
otLinkGetExtendedAddress(otInstance *)
otLinkSetExtendedAddress(otInstance *, const otExtAddress *)
otLinkGetFactoryAssignedIeeeEui64(otInstance *, otExtAddress *)
otLinkGetPanId(otInstance *)
otLinkSetPanId(otInstance *, otPanId)
otLinkGetPollPeriod(otInstance *)
otLinkSetPollPeriod(otInstance *, uint32_t)
otLinkSendDataRequest(otInstance *)
otLinkGetShortAddress(otInstance *)
otLinkGetMaxFrameRetriesDirect(otInstance *)
otLinkSetMaxFrameRetriesDirect(otInstance *, uint8_t)
otLinkGetMaxFrameRetriesIndirect(otInstance *)
otLinkSetMaxFrameRetriesIndirect(otInstance *, uint8_t)
otLinkGetFrameCounter(otInstance *)
otLinkConvertRssToLinkQuality(otInstance *, int8_t)
otLinkConvertLinkQualityToRss(otInstance *, uint8_t)
otLinkSetPcapCallback(otInstance *, otLinkPcapCallback, void *)
otLinkIsPromiscuous(otInstance *)
otLinkSetPromiscuous(otInstance *, bool)
otLinkSetEnabled(otInstance *, bool)
otLinkIsEnabled(otInstance *)
otLinkGetCounters(otInstance *)
otLinkResetCounters(otInstance *)
otLinkActiveScan(otInstance *, uint32_t, uint16_t, otHandleActiveScanResult, void *)
otLinkIsActiveScanInProgress(otInstance *)
otLinkEnergyScan(otInstance *, uint32_t, uint16_t, otHandleEnergyScanResult, void *)
otLinkIsEnergyScanInProgress(otInstance *)
otLinkIsInTransmitState(otInstance *)
otLinkGetCcaFailureRate(otInstance *)
otLinkSendEmptyData(otInstance *)
otLinkSetRegion(otInstance *, uint16_t)
otLinkGetRegion(otInstance *, uint16_t *)
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/openthread/openthread/src/core/api/link_api.cpp
 
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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * Copyright (c) 2016, The OpenThread Authors. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the copyright holder nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. *//* ... */ /** * @file * This file implements the OpenThread Link API. *//* ... */ #include "openthread-core-config.h" #include "instance/instance.hpp" using namespace ot; uint8_t otLinkGetChannel(otInstance *aInstance) { Instance &instance = AsCoreType(aInstance); uint8_t channel; #if OPENTHREAD_CONFIG_LINK_RAW_ENABLE if (instance.Get<Mac::LinkRaw>().IsEnabled()) { channel = instance.Get<Mac::LinkRaw>().GetChannel(); }{...} else #endif { channel = instance.Get<Mac::Mac>().GetPanChannel(); }{...} return channel; }{ ... } otError otLinkSetChannel(otInstance *aInstance, uint8_t aChannel) { Error error; Instance &instance = AsCoreType(aInstance); #if OPENTHREAD_CONFIG_LINK_RAW_ENABLE if (instance.Get<Mac::LinkRaw>().IsEnabled()) { error = instance.Get<Mac::LinkRaw>().SetChannel(aChannel); ExitNow(); }{...} #endif/* ... */ VerifyOrExit(instance.Get<Mle::MleRouter>().IsDisabled(), error = kErrorInvalidState); SuccessOrExit(error = instance.Get<Mac::Mac>().SetPanChannel(aChannel)); instance.Get<MeshCoP::ActiveDatasetManager>().Clear(); instance.Get<MeshCoP::PendingDatasetManager>().Clear(); exit: return error; }{ ... } #if OPENTHREAD_CONFIG_WAKEUP_COORDINATOR_ENABLE || OPENTHREAD_CONFIG_WAKEUP_END_DEVICE_ENABLE uint8_t otLinkGetWakeupChannel(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().GetWakeupChannel(); }{...} otError otLinkSetWakeupChannel(otInstance *aInstance, uint8_t aChannel) { Error error = kErrorNone; Instance &instance = AsCoreType(aInstance); VerifyOrExit(instance.Get<Mle::MleRouter>().IsDisabled(), error = kErrorInvalidState); SuccessOrExit(error = instance.Get<Mac::Mac>().SetWakeupChannel(aChannel)); instance.Get<MeshCoP::ActiveDatasetManager>().Clear(); instance.Get<MeshCoP::PendingDatasetManager>().Clear(); exit: return error; }{...} /* ... */#endif // OPENTHREAD_CONFIG_WAKEUP_COORDINATOR_ENABLE || OPENTHREAD_CONFIG_WAKEUP_END_DEVICE_ENABLE uint32_t otLinkGetSupportedChannelMask(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().GetSupportedChannelMask().GetMask(); }{ ... } otError otLinkSetSupportedChannelMask(otInstance *aInstance, uint32_t aChannelMask) { Error error = kErrorNone; Instance &instance = AsCoreType(aInstance); VerifyOrExit(instance.Get<Mle::MleRouter>().IsDisabled(), error = kErrorInvalidState); instance.Get<Mac::Mac>().SetSupportedChannelMask(Mac::ChannelMask(aChannelMask)); exit: return error; }{ ... } const otExtAddress *otLinkGetExtendedAddress(otInstance *aInstance) { return &AsCoreType(aInstance).Get<Mac::Mac>().GetExtAddress(); }{ ... } otError otLinkSetExtendedAddress(otInstance *aInstance, const otExtAddress *aExtAddress) { Error error = kErrorNone; Instance &instance = AsCoreType(aInstance); VerifyOrExit(instance.Get<Mle::MleRouter>().IsDisabled(), error = kErrorInvalidState); instance.Get<Mac::Mac>().SetExtAddress(AsCoreType(aExtAddress)); instance.Get<Mle::MleRouter>().UpdateLinkLocalAddress(); exit: return error; }{ ... } void otLinkGetFactoryAssignedIeeeEui64(otInstance *aInstance, otExtAddress *aEui64) { AsCoreType(aInstance).Get<Radio>().GetIeeeEui64(AsCoreType(aEui64)); }{ ... } otPanId otLinkGetPanId(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().GetPanId(); } otError otLinkSetPanId(otInstance *aInstance, otPanId aPanId) { Error error = kErrorNone; Instance &instance = AsCoreType(aInstance); VerifyOrExit(instance.Get<Mle::MleRouter>().IsDisabled(), error = kErrorInvalidState); instance.Get<Mac::Mac>().SetPanId(aPanId); instance.Get<MeshCoP::ActiveDatasetManager>().Clear(); instance.Get<MeshCoP::PendingDatasetManager>().Clear(); exit: return error; }{ ... } uint32_t otLinkGetPollPeriod(otInstance *aInstance) { return AsCoreType(aInstance).Get<DataPollSender>().GetKeepAlivePollPeriod(); }{ ... } otError otLinkSetPollPeriod(otInstance *aInstance, uint32_t aPollPeriod) { return AsCoreType(aInstance).Get<DataPollSender>().SetExternalPollPeriod(aPollPeriod); }{ ... } otError otLinkSendDataRequest(otInstance *aInstance) { return AsCoreType(aInstance).Get<DataPollSender>().SendDataPoll(); }{ ... } otShortAddress otLinkGetShortAddress(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().GetShortAddress(); }{ ... } uint8_t otLinkGetMaxFrameRetriesDirect(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().GetMaxFrameRetriesDirect(); }{ ... } void otLinkSetMaxFrameRetriesDirect(otInstance *aInstance, uint8_t aMaxFrameRetriesDirect) { AsCoreType(aInstance).Get<Mac::Mac>().SetMaxFrameRetriesDirect(aMaxFrameRetriesDirect); }{ ... } #if OPENTHREAD_FTD uint8_t otLinkGetMaxFrameRetriesIndirect(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().GetMaxFrameRetriesIndirect(); }{ ... } void otLinkSetMaxFrameRetriesIndirect(otInstance *aInstance, uint8_t aMaxFrameRetriesIndirect) { AsCoreType(aInstance).Get<Mac::Mac>().SetMaxFrameRetriesIndirect(aMaxFrameRetriesIndirect); }{ ... } /* ... */#endif // OPENTHREAD_FTD uint32_t otLinkGetFrameCounter(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::SubMac>().GetFrameCounter(); }{ ... } #if OPENTHREAD_CONFIG_MAC_FILTER_ENABLE otMacFilterAddressMode otLinkFilterGetAddressMode(otInstance *aInstance) { return MapEnum(AsCoreType(aInstance).Get<Mac::Filter>().GetMode()); }{...} void otLinkFilterSetAddressMode(otInstance *aInstance, otMacFilterAddressMode aMode) { AsCoreType(aInstance).Get<Mac::Filter>().SetMode(MapEnum(aMode)); }{...} otError otLinkFilterAddAddress(otInstance *aInstance, const otExtAddress *aExtAddress) { return AsCoreType(aInstance).Get<Mac::Filter>().AddAddress(AsCoreType(aExtAddress)); }{...} void otLinkFilterRemoveAddress(otInstance *aInstance, const otExtAddress *aExtAddress) { AsCoreType(aInstance).Get<Mac::Filter>().RemoveAddress(AsCoreType(aExtAddress)); }{...} void otLinkFilterClearAddresses(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Filter>().ClearAddresses(); }{...} otError otLinkFilterGetNextAddress(otInstance *aInstance, otMacFilterIterator *aIterator, otMacFilterEntry *aEntry) { AssertPointerIsNotNull(aIterator); AssertPointerIsNotNull(aEntry); return AsCoreType(aInstance).Get<Mac::Filter>().GetNextAddress(*aIterator, *aEntry); }{...} otError otLinkFilterAddRssIn(otInstance *aInstance, const otExtAddress *aExtAddress, int8_t aRss) { return AsCoreType(aInstance).Get<Mac::Filter>().AddRssIn(AsCoreType(aExtAddress), aRss); }{...} void otLinkFilterRemoveRssIn(otInstance *aInstance, const otExtAddress *aExtAddress) { AsCoreType(aInstance).Get<Mac::Filter>().RemoveRssIn(AsCoreType(aExtAddress)); }{...} void otLinkFilterSetDefaultRssIn(otInstance *aInstance, int8_t aRss) { AsCoreType(aInstance).Get<Mac::Filter>().SetDefaultRssIn(aRss); }{...} void otLinkFilterClearDefaultRssIn(otInstance *aInstance) { AsCoreType(aInstance).Get<Mac::Filter>().ClearDefaultRssIn(); }{...} void otLinkFilterClearAllRssIn(otInstance *aInstance) { AsCoreType(aInstance).Get<Mac::Filter>().ClearAllRssIn(); } otError otLinkFilterGetNextRssIn(otInstance *aInstance, otMacFilterIterator *aIterator, otMacFilterEntry *aEntry) { AssertPointerIsNotNull(aIterator); AssertPointerIsNotNull(aEntry); return AsCoreType(aInstance).Get<Mac::Filter>().GetNextRssIn(*aIterator, *aEntry); }{...} #if OPENTHREAD_CONFIG_RADIO_LINK_IEEE_802_15_4_ENABLE void otLinkSetRadioFilterEnabled(otInstance *aInstance, bool aFilterEnabled) { return AsCoreType(aInstance).Get<Mac::Mac>().SetRadioFilterEnabled(aFilterEnabled); }{...} bool otLinkIsRadioFilterEnabled(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().IsRadioFilterEnabled(); }{...} /* ... */#endif /* ... */ #endif // OPENTHREAD_CONFIG_MAC_FILTER_ENABLE uint8_t otLinkConvertRssToLinkQuality(otInstance *aInstance, int8_t aRss) { return LinkQualityForLinkMargin(AsCoreType(aInstance).Get<Mac::Mac>().ComputeLinkMargin(aRss)); }{ ... } int8_t otLinkConvertLinkQualityToRss(otInstance *aInstance, uint8_t aLinkQuality) { return GetTypicalRssForLinkQuality(AsCoreType(aInstance).Get<Mac::Mac>().GetNoiseFloor(), static_cast<LinkQuality>(aLinkQuality)); }{ ... } #if OPENTHREAD_CONFIG_MAC_RETRY_SUCCESS_HISTOGRAM_ENABLE const uint32_t *otLinkGetTxDirectRetrySuccessHistogram(otInstance *aInstance, uint8_t *aNumberOfEntries) { AssertPointerIsNotNull(aNumberOfEntries); return AsCoreType(aInstance).Get<Mac::Mac>().GetDirectRetrySuccessHistogram(*aNumberOfEntries); }{...} const uint32_t *otLinkGetTxIndirectRetrySuccessHistogram(otInstance *aInstance, uint8_t *aNumberOfEntries) { const uint32_t *histogram = nullptr; AssertPointerIsNotNull(aNumberOfEntries); #if OPENTHREAD_FTD histogram = AsCoreType(aInstance).Get<Mac::Mac>().GetIndirectRetrySuccessHistogram(*aNumberOfEntries); #else OT_UNUSED_VARIABLE(aInstance); *aNumberOfEntries = 0;/* ... */ #endif return histogram; }{...} void otLinkResetTxRetrySuccessHistogram(otInstance *aInstance) { AsCoreType(aInstance).Get<Mac::Mac>().ResetRetrySuccessHistogram(); }{...} /* ... */#endif // OPENTHREAD_CONFIG_MAC_RETRY_SUCCESS_HISTOGRAM_ENABLE void otLinkSetPcapCallback(otInstance *aInstance, otLinkPcapCallback aPcapCallback, void *aCallbackContext) { AsCoreType(aInstance).Get<Mac::Mac>().SetPcapCallback(aPcapCallback, aCallbackContext); }{ ... } bool otLinkIsPromiscuous(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().IsPromiscuous(); } otError otLinkSetPromiscuous(otInstance *aInstance, bool aPromiscuous) { Error error = kErrorNone; Instance &instance = AsCoreType(aInstance); // cannot enable IEEE 802.15.4 promiscuous mode if the Thread interface is enabled VerifyOrExit(!instance.Get<ThreadNetif>().IsUp(), error = kErrorInvalidState); instance.Get<Mac::Mac>().SetPromiscuous(aPromiscuous); exit: return error; }{ ... } otError otLinkSetEnabled(otInstance *aInstance, bool aEnable) { Error error = kErrorNone; Instance &instance = AsCoreType(aInstance); // cannot disable the link layer if the Thread interface is enabled VerifyOrExit(!instance.Get<ThreadNetif>().IsUp(), error = kErrorInvalidState); instance.Get<Mac::Mac>().SetEnabled(aEnable); exit: return error; }{ ... } bool otLinkIsEnabled(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().IsEnabled(); } const otMacCounters *otLinkGetCounters(otInstance *aInstance) { return &AsCoreType(aInstance).Get<Mac::Mac>().GetCounters(); }{ ... } void otLinkResetCounters(otInstance *aInstance) { AsCoreType(aInstance).Get<Mac::Mac>().ResetCounters(); } otError otLinkActiveScan(otInstance *aInstance, uint32_t aScanChannels, uint16_t aScanDuration, otHandleActiveScanResult aCallback, void *aCallbackContext) { return AsCoreType(aInstance).Get<Mac::Mac>().ActiveScan(aScanChannels, aScanDuration, aCallback, aCallbackContext); }{ ... } bool otLinkIsActiveScanInProgress(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().IsActiveScanInProgress(); }{ ... } otError otLinkEnergyScan(otInstance *aInstance, uint32_t aScanChannels, uint16_t aScanDuration, otHandleEnergyScanResult aCallback, void *aCallbackContext) { return AsCoreType(aInstance).Get<Mac::Mac>().EnergyScan(aScanChannels, aScanDuration, aCallback, aCallbackContext); }{ ... } bool otLinkIsEnergyScanInProgress(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().IsEnergyScanInProgress(); }{ ... } bool otLinkIsInTransmitState(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().IsInTransmitState(); }{ ... } uint16_t otLinkGetCcaFailureRate(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().GetCcaFailureRate(); }{ ... } #if OPENTHREAD_CONFIG_MAC_CSL_RECEIVER_ENABLE bool otLinkIsCslEnabled(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().IsCslEnabled(); } bool otLinkIsCslSupported(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().IsCslSupported(); } uint8_t otLinkGetCslChannel(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().GetCslChannel(); } otError otLinkSetCslChannel(otInstance *aInstance, uint8_t aChannel) { Error error = kErrorNone; VerifyOrExit(Radio::IsCslChannelValid(aChannel), error = kErrorInvalidArgs); AsCoreType(aInstance).Get<Mac::Mac>().SetCslChannel(aChannel); exit: return error; }{...} uint32_t otLinkGetCslPeriod(otInstance *aInstance) { return Mac::Mac::CslPeriodToUsec(AsCoreType(aInstance).Get<Mac::Mac>().GetCslPeriod()); }{...} otError otLinkSetCslPeriod(otInstance *aInstance, uint32_t aPeriod) { Error error = kErrorNone; uint16_t periodInTenSymbolsUnit; if (aPeriod == 0) { periodInTenSymbolsUnit = 0; }{...} else { VerifyOrExit((aPeriod % kUsPerTenSymbols) == 0, error = kErrorInvalidArgs); periodInTenSymbolsUnit = ClampToUint16(aPeriod / kUsPerTenSymbols); VerifyOrExit(periodInTenSymbolsUnit >= kMinCslPeriod, error = kErrorInvalidArgs); }{...} AsCoreType(aInstance).Get<Mac::Mac>().SetCslPeriod(periodInTenSymbolsUnit); exit: return error; }{...} uint32_t otLinkGetCslTimeout(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mle::MleRouter>().GetCslTimeout(); }{...} otError otLinkSetCslTimeout(otInstance *aInstance, uint32_t aTimeout) { Error error = kErrorNone; VerifyOrExit(kMaxCslTimeout >= aTimeout, error = kErrorInvalidArgs); AsCoreType(aInstance).Get<Mle::MleRouter>().SetCslTimeout(aTimeout); exit: return error; }{...} /* ... */ #endif // OPENTHREAD_CONFIG_MAC_CSL_RECEIVER_ENABLE #if OPENTHREAD_CONFIG_REFERENCE_DEVICE_ENABLE otError otLinkSendEmptyData(otInstance *aInstance) { return AsCoreType(aInstance).Get<MeshForwarder>().SendEmptyMessage(); }{ ... } /* ... */#endif otError otLinkSetRegion(otInstance *aInstance, uint16_t aRegionCode) { return AsCoreType(aInstance).Get<Mac::Mac>().SetRegion(aRegionCode); }{ ... } otError otLinkGetRegion(otInstance *aInstance, uint16_t *aRegionCode) { Error error; if (aRegionCode == nullptr) { error = kErrorInvalidArgs; }{...} else { error = AsCoreType(aInstance).Get<Mac::Mac>().GetRegion(*aRegionCode); }{...} return error; }{ ... } #if OPENTHREAD_CONFIG_WAKEUP_END_DEVICE_ENABLE otError otLinkSetWakeUpListenEnabled(otInstance *aInstance, bool aEnable) { return AsCoreType(aInstance).Get<Mac::Mac>().SetWakeupListenEnabled(aEnable); }{...} bool otLinkIsWakeupListenEnabled(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().IsWakeupListenEnabled(); }{...} void otLinkGetWakeupListenParameters(otInstance *aInstance, uint32_t *aInterval, uint32_t *aDuration) { AsCoreType(aInstance).Get<Mac::Mac>().GetWakeupListenParameters(*aInterval, *aDuration); }{...} otError otLinkSetWakeupListenParameters(otInstance *aInstance, uint32_t aInterval, uint32_t aDuration) { return AsCoreType(aInstance).Get<Mac::Mac>().SetWakeupListenParameters(aInterval, aDuration); }{...} /* ... */#endif // OPENTHREAD_CONFIG_WAKEUP_END_DEVICE_ENABLE
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.