Home
last modified time | relevance | path

Searched refs:mCalibratedPowerTables (Results 1 – 2 of 2) sorted by relevance

/openthread-latest/src/core/utils/
Dpower_calibration.cpp92 …VerifyOrExit(!mCalibratedPowerTables[chIndex].ContainsMatching(aActualPower), error = kErrorInvali… in AddCalibratedPower()
93 VerifyOrExit(!mCalibratedPowerTables[chIndex].IsFull(), error = kErrorNoBufs); in AddCalibratedPower()
96 SuccessOrExit(error = mCalibratedPowerTables[chIndex].PushBack(entry)); in AddCalibratedPower()
109 for (CalibratedPowerTable &table : mCalibratedPowerTables) in ClearCalibratedPowers()
154 VerifyOrExit(mCalibratedPowerTables[chIndex].GetLength() > 0, error = kErrorNotFound); in GetPowerSettings()
156 for (uint8_t i = 0; i < mCalibratedPowerTables[chIndex].GetLength(); i++) in GetPowerSettings()
158 actualPower = mCalibratedPowerTables[chIndex][i].GetActualPower(); in GetPowerSettings()
187 *aActualPower = mCalibratedPowerTables[chIndex][mCalibratedPowerIndex].GetActualPower(); in GetPowerSettings()
190 …error = mCalibratedPowerTables[chIndex][mCalibratedPowerIndex].GetRawPowerSetting(aRawPowerSetting, in GetPowerSettings()
Dpower_calibration.hpp165 CalibratedPowerTable mCalibratedPowerTables[kNumChannels]; member in ot::Utils::PowerCalibration