Home
last modified time | relevance | path

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

/openthread-latest/src/core/diags/
Dfactory_diags.cpp234 int8_t txPower = OT_RADIO_POWER_INVALID;
279 SuccessOrExit(error = Utils::CmdLineParser::ParseAsInt8(aArgs[0], txPower));
316 mTxPacket->mInfo.mTxInfo.mTxPower = txPower;
364 int8_t txPower;
366 SuccessOrExit(error = Utils::CmdLineParser::ParseAsInt8(aArgs[0], txPower));
368 mTxPower = txPower;
/openthread-latest/src/ncp/
Dncp_base.cpp2471 int8_t txPower = 0; in HandlePropertySet() local
2474 SuccessOrExit(error = mDecoder.ReadInt8(txPower)); in HandlePropertySet()
2475 error = otPlatRadioSetTransmitPower(mInstance, txPower); in HandlePropertySet()