ESP-IDF
ot::MaxPowerTable
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Methods
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
ot::MaxPowerTable
ot::MaxPowerTable class
Syntax
Show:
Summary
Declaration
from
max_power_table.hpp:36
class
MaxPowerTable
{
public
:
static
constexpr
int8_t
kPowerDefault
=
30
;
MaxPowerTable
(
void
)
{
memset
(
mPowerTable
,
kPowerDefault
,
sizeof
(
mPowerTable
)
)
;
}
int8_t
GetTransmitPower
(
uint8_t
aChannel
)
const
{
return
mPowerTable
[
aChannel
-
Radio
::
kChannelMin
]
;
}
void
SetTransmitPower
(
uint8_t
aChannel
,
int8_t
aPower
)
{
mPowerTable
[
aChannel
-
Radio
::
kChannelMin
]
=
aPower
;
}
uint32_t
GetSupportedChannelMask
(
void
)
const
{
uint32_t
channelMask
=
0
;
for
(
uint8_t
i
=
Radio
::
kChannelMin
;
i
<=
Radio
::
kChannelMax
;
++
i
)
{
if
(
mPowerTable
[
i
-
Radio
::
kChannelMin
]
!=
OT_RADIO_POWER_INVALID
)
{
channelMask
|=
(
1
<
<
i
)
;
}
}
return
channelMask
;
}
private
:
int8_t
mPowerTable
[
Radio
::
kChannelMax
-
Radio
::
kChannelMin
+
1
]
;
}
;
Fields
Field
Declared as
ot::MaxPowerTable::kPowerDefault
ot::MaxPowerTable::mPowerTable
int8_t
[
Radio
::
kChannelMax
-
Radio
::
kChannelMin
+
1
]
Methods
GetTransmitPower() const
Gets the max allowed transmit power of channel @p aChannel.
SetTransmitPower()
Sets the max allowed transmit power of channel @p aChannel.
GetSupportedChannelMask() const
Gets the supported channel masks.
Examples
References
from
examples
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out