Question
How to increase transmit gain in STM32WB ?
I want to increase the gain of my Thread device. I am trying a simple loop as follows inside a sequenced task but it never exits. The seq have the lowest prio of all.
int pwr = 0;
while(pwr != 4)
{
otPlatRadioSetTransmitPower(NULL, 4);
otPlatRadioGetTransmitPower(NULL, pwr);
HAL_Delay(1)
}
