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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
50
51
55
56
57
58
59
60
61
62
63
64
65
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
169
170
174
175
179
180
184
185
189
190
194
195
196
208
209
213
214
215
216
220
221
225
226
230
231
235
236
240
241
248
249
253
254
258
259
263
264
268
269
270
271
278
279
280
290
291
292
293
297
298
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
323
324
325
326
327
328
332
333
334
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
375
376
377
378
379
380
381
382
386
387
391
392
393
394
395
396
400
401
405
406
410
411
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
439
440
441
442
443
444
445
449
455
456
457
458
459
460
461
462
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
486
487
491
492
493
494
495
496
500
504
505
506
507
508
509
510
511
512
513
514
518
519
523
524
528
/* ... */
/* ... */
#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
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
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
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
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);
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);
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
#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