Other Parts Discussed in Thread: SYSCONFIG
Tool/software:
Hi,
I am updating the tx power of my peripheral device dynamically .
In the sysconfig, under radio section it is set as default tx power value. In the advertisement parameters it is set as tx power value as 0.
Only based on certain conditions, I will change the tx power to maximum and once that condition is met I will move back to 0 again.
My only concern is I am able to change the advertisement parameter using the below code
uint8_t txPower = 8;
GapAdv_setParam(GAP_ADV_PARAM_TX_POWER, &txPower);
But how will I modify the radio section of sysconfig dynamically through code because by default it is set as 0.