Home
last modified time | relevance | path

Searched refs:kChannelMax (Results 1 – 12 of 12) sorted by relevance

/openthread-latest/src/core/radio/
Dmax_power_table.hpp67 for (uint8_t i = Radio::kChannelMin; i <= Radio::kChannelMax; ++i) in GetSupportedChannelMask()
79 int8_t mPowerTable[Radio::kChannelMax - Radio::kChannelMin + 1];
Dradio.hpp105 static constexpr uint8_t kChannelMax = OT_RADIO_2P4GHZ_OQPSK_CHANNEL_MAX; member in ot::Radio
110 static constexpr uint8_t kChannelMax = OT_RADIO_915MHZ_OQPSK_CHANNEL_MAX; member in ot::Radio
115 static constexpr uint8_t kChannelMax = OT_RADIO_2P4GHZ_OQPSK_CHANNEL_MAX; member in ot::Radio
120 …static constexpr uint8_t kChannelMax = OPENTHREAD_CONFIG_PLATFORM_RADIO_PROPRIETARY_CHANNE… member in ot::Radio
746 … ((kChannelMin == aCslChannel) || ((kChannelMin < aCslChannel) && (aCslChannel <= kChannelMax)))); in IsCslChannelValid()
/openthread-latest/src/core/utils/
Dpower_calibration.hpp148 return ((aChannel >= Radio::kChannelMin) && (aChannel <= Radio::kChannelMax)); in IsChannelValid()
155 static constexpr uint16_t kNumChannels = Radio::kChannelMax - Radio::kChannelMin + 1;
Dchannel_monitor.hpp179 static constexpr uint8_t kNumChannels = (Radio::kChannelMax - Radio::kChannelMin + 1);
Dchannel_monitor.cpp107 VerifyOrExit((Radio::kChannelMin <= aChannel) && (aChannel <= Radio::kChannelMax)); in GetChannelOccupancy()
/openthread-latest/src/core/mac/
Dchannel_mask.hpp227 static_assert((Radio::kChannelMin < 32) && (Radio::kChannelMax < 32),
Dchannel_mask.cpp64 for (aChannel++; aChannel <= Radio::kChannelMax; aChannel++) in GetNextChannel()
/openthread-latest/src/core/thread/
Dmle_tlvs.cpp132 VerifyOrExit((Radio::kChannelMin <= channel) && (channel <= Radio::kChannelMax)); in IsValid()
/openthread-latest/src/core/diags/
Dfactory_diags.cpp981 for (channel = Radio::kChannelMin; channel <= Radio::kChannelMax + 1; channel++) in ProcessPowerSettings()
983 …error = (channel == Radio::kChannelMax + 1) ? kErrorNotFound : GetPowerSettings(channel, powerSett… in ProcessPowerSettings()
1103 return (aChannel >= Radio::kChannelMin && aChannel <= Radio::kChannelMax); in IsChannelValid()
/openthread-latest/src/posix/platform/
Dradio.cpp176 str != nullptr && channel <= ot::Radio::kChannelMax; str = strtok_r(nullptr, ",", &pSave)) in ProcessMaxPowerTable()
190 while (channel <= ot::Radio::kChannelMax) in ProcessMaxPowerTable()
/openthread-latest/src/lib/spinel/
Dradio_spinel.cpp2248 for (uint8_t channel = Radio::kChannelMin; channel <= Radio::kChannelMax; channel++) in RestoreProperties()
2313 …VerifyOrExit(aChannel >= Radio::kChannelMin && aChannel <= Radio::kChannelMax, error = OT_ERROR_IN… in SetChannelMaxTransmitPower()
2432 …VerifyOrExit(aChannel >= Radio::kChannelMin && aChannel <= Radio::kChannelMax, error = OT_ERROR_IN… in SetChannelTargetPower()
/openthread-latest/tests/unit/
Dtest_mac_frame.cpp435 for (channel = Radio::kChannelMin; channel <= Radio::kChannelMax; channel++) in VerifyChannelMaskContent()