Other Parts Discussed in Thread: UNIFLASH
Hi Team SimpleLink,
It seems that there are some settings (like country code and TX power) that can be set in both UniFlash and in the application software. If these parameters are set in both UniFlash and the application code, and they are different/in-conflict.. which settings are ultimately used.. Uniflash's or the Application code's?
For example..
In the firmware..
result = sl_WlanSet(SL_WLAN_CFG_GENERAL_PARAM_ID,
SL_WLAN_GENERAL_PARAM_OPT_COUNTRY_CODE, 2,
regionStr); // set Region to "US", "EU", or "JP"
/* Set TX power level to 4 dB Down */
uint8_t power = 4; // -4dBm matches what we do in production on the 807211 board with US Settings
result = sl_WlanSet(SL_WLAN_CFG_GENERAL_PARAM_ID,
SL_WLAN_GENERAL_PARAM_OPT_STA_TX_POWER, 1,
(uint8_t *)&power);
assert(result == 0);
And in UniFlash..
Thanks, Merril