You are here: Forum Home → ANT Developers Forums → ANT General Questions → Thread
Received BROADCAST_DATA_0x4E
:: 4e, 00-01-01-00-00-00-00-00-00
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
Received BROADCAST_DATA_0x4E
:: 4e, 00-01-01-00-00-00-00-00-00
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
EVENT_RX_FAIL_0x02
:: 40, 00-01-02
Ian Haigh
// PA/LNA Code for ANT:
uint32_t err_code = sd_ant_config_pa_lna_get(&pstAmpConfig;);
APP_ERROR_CHECK(err_code);
pstAmpConfig.PA_CONFIG.bEnabled = 1;
pstAmpConfig.PA_CONFIG.bActiveState = 1;
pstAmpConfig.PA_CONFIG.ucGPIO = APP_PA_PIN;
pstAmpConfig.LNA_CONFIG.bEnabled = 1;
pstAmpConfig.LNA_CONFIG.bActiveState = 1;
pstAmpConfig.LNA_CONFIG.ucGPIO = APP_LNA_PIN;
nrf_ppi_channel_t ppi_set_ch;
nrf_ppi_channel_t ppi_clr_ch;
pstAmpConfig.ucGPIOTECh = 1;//nGpioTeChannelNum;
pstAmpConfig.ucPPIChDisable = 0;//ppi_clr_ch; // 0 Value
pstAmpConfig.ucPPIChEnable = 1;//ppi_set_ch; // 1 Value
err_code = sd_ant_config_pa_lna_set(&pstAmpConfig;);
APP_ERROR_CHECK(err_code);