Searched refs:aChannel (Results 1 – 4 of 4) sorted by relevance
/Zephyr-latest/modules/openthread/platform/ |
D | radio_spinel.cpp | 176 otError otPlatRadioReceive(otInstance *aInstance, uint8_t aChannel) in otPlatRadioReceive() argument 179 return psRadioSpinel->Receive(aChannel); in otPlatRadioReceive() 390 void otPlatDiagChannelSet(uint8_t aChannel) in otPlatDiagChannelSet() argument 394 snprintf(cmd, sizeof(cmd), "channel %d", aChannel); in otPlatDiagChannelSet() 477 otError otPlatRadioSetChannelMaxTransmitPower(otInstance *aInstance, uint8_t aChannel, in otPlatRadioSetChannelMaxTransmitPower() argument 481 return psRadioSpinel->SetChannelMaxTransmitPower(aChannel, aMaxPower); in otPlatRadioSetChannelMaxTransmitPower() 507 otError otPlatRadioReceiveAt(otInstance *aInstance, uint8_t aChannel, uint32_t aStart, in otPlatRadioReceiveAt() argument 511 OT_UNUSED_VARIABLE(aChannel); in otPlatRadioReceiveAt()
|
D | radio.c | 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() 726 void platformRadioChannelSet(uint8_t aChannel) in platformRadioChannelSet() argument 728 channel = aChannel; in platformRadioChannelSet() 802 otError otPlatRadioReceive(otInstance *aInstance, uint8_t aChannel) in otPlatRadioReceive() argument 810 channel = aChannel; in otPlatRadioReceive() 812 radio_api->set_channel(radio_dev, aChannel); in otPlatRadioReceive() 821 otError otPlatRadioReceiveAt(otInstance *aInstance, uint8_t aChannel, in otPlatRadioReceiveAt() argument [all …]
|
D | platform-zephyr.h | 80 void platformRadioChannelSet(uint8_t aChannel);
|
D | diag.c | 105 void otPlatDiagChannelSet(uint8_t aChannel) in otPlatDiagChannelSet() argument 107 sChannel = aChannel; in otPlatDiagChannelSet() 108 platformRadioChannelSet(aChannel); in otPlatDiagChannelSet()
|