In MAC init,
MAC_INTERNAL_API void macRadioInit(void)
{
/* variable initialization for this module */
reqChannel = MAC_RADIO_CHANNEL_DEFAULT;
macPhyChannel = MAC_RADIO_CHANNEL_INVALID;
reqTxPower = MAC_RADIO_TX_POWER_INVALID;
macPhyTxPower = MAC_RADIO_TX_POWER_INVALID;
}
Is it set as the lowest Tx power? Or it means the Tx power is set somewhere else?
If we want to set Tx power at start stage and never change it later, what could be the best place? this init function?
Thanks
Rui