Lines Matching refs:aChannel
125 static int8_t get_transmit_power_for_channel(uint8_t aChannel) in get_transmit_power_for_channel() argument
130 if (aChannel >= OT_RADIO_2P4GHZ_OQPSK_CHANNEL_MIN && in get_transmit_power_for_channel()
131 aChannel <= OT_RADIO_2P4GHZ_OQPSK_CHANNEL_MAX) { in get_transmit_power_for_channel()
133 max_tx_power_table[aChannel - OT_RADIO_2P4GHZ_OQPSK_CHANNEL_MIN]; in get_transmit_power_for_channel()
792 otError otPlatRadioReceive(otInstance *aInstance, uint8_t aChannel) in otPlatRadioReceive() argument
796 channel = aChannel; in otPlatRadioReceive()
798 radio_api->set_channel(radio_dev, aChannel); in otPlatRadioReceive()
807 otError otPlatRadioReceiveAt(otInstance *aInstance, uint8_t aChannel, in otPlatRadioReceiveAt() argument
815 .rx_slot.channel = aChannel, in otPlatRadioReceiveAt()
1618 otError otPlatRadioSetChannelMaxTransmitPower(otInstance *aInstance, uint8_t aChannel, in otPlatRadioSetChannelMaxTransmitPower() argument
1623 if (aChannel < OT_RADIO_2P4GHZ_OQPSK_CHANNEL_MIN || in otPlatRadioSetChannelMaxTransmitPower()
1624 aChannel > OT_RADIO_2P4GHZ_OQPSK_CHANNEL_MAX) { in otPlatRadioSetChannelMaxTransmitPower()
1628 max_tx_power_table[aChannel - OT_RADIO_2P4GHZ_OQPSK_CHANNEL_MIN] = aMaxPower; in otPlatRadioSetChannelMaxTransmitPower()
1630 if (aChannel == channel) { in otPlatRadioSetChannelMaxTransmitPower()
1631 radio_api->set_txpower(radio_dev, get_transmit_power_for_channel(aChannel)); in otPlatRadioSetChannelMaxTransmitPower()