This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

How to build gazell communication using nrf52810 + rfx24l01C?

The SDK version I am using is V15.0.0.
I use the function interface nrf_gzll_set_pa_lna_cfg 。The following is my configuration information:
static nrf_gzll_pa_lna_cfg_t m_pa_lna_cfg = {
.lna_enabled = 1,
.pa_enabled = 1,
.lna_active_high = 1,
.pa_active_high = 1,
.lna_gpio_pin = 22,
.pa_gpio_pin = 23,
.pa_gpiote_channel = 0,
.lna_gpiote_channel = 1,
.timer = NRF_TIMER2,
.ppi_channels[0] = 12,
.ppi_channels[1] = 13,
.ppi_channels[2] = 14,
.ppi_channels[3] = 15,
.ramp_up_time = 1,
};
Found the following problems after running:
1、The signal got a magnification of about 10db。
2、High data packet loss rate。
3、Gzll communication can be received, easy to send failed。
Related