Hi,
On the board that I have, the nRF52840 uses SE2431L Front End Module (FEM) with pa_lna_assist() as found in devzone.nordicsemi.com/.../pa-lna-support-in-s132
We observed that the BLE RSSI received with this nRF52840 degrades after some time in the field. To improve the BLE RSSI or avoid any RSSI degradation, I want to evaluate the option of bypassing the LNA present in SE2431L by using Mode 1 in table 8 of this FEM, i.e., CPS = 0, CSD = 1, CTX = 0 and call pa_lna_assist(CTX, CPS)
Keeping the PA in the external FEM, is the following code the correct way to configure the pa_lna_assist()
such that the LNA is bypassed in the external FEM? or should I simply remove the code for lna_cfg
?.
// PA config
opt.common_opt.pa_lna.pa_cfg.active_high = 1; // Set the pin to be active high
opt.common_opt.pa_lna.pa_cfg.enable = 1; // Enable toggling
opt.common_opt.pa_lna.pa_cfg.gpio_pin = gpio_pa_pin; // The GPIO pin to toggle
// LNA config
opt.common_opt.pa_lna.lna_cfg.active_high = 0; // Set the pin to be active high
opt.common_opt.pa_lna.lna_cfg.enable = 0; // Enable toggling
opt.common_opt.pa_lna.lna_cfg.gpio_pin = gpio_lna_pin; // The GPIO pin to toggle
Kindly let me know the correct way to use the external FEM with only the PA and bypass the LNA in the external FEM.
Thanks,
Tilak