Hello,
I use nRF5 SDK and nRF52833. Now I want to do the radio test at the "examples\ble_peripheral\ble_app_uart".
When I use radio_test_init(&m_test_config); or other related to radio test , it will generate the following errors.
00> <error> app: SOFTDEVICE: INVALID MEMORY ACCESS
This is why? Do the radio test not use on the Softdevice?
#include "rftest.h"
#include "radio_test.h"
static radio_test_config_t m_test_config; /**< Radio test configuration. */
void rf_test_init(void)
{
radio_test_init(&m_test_config);
memset(&m_test_config, 0, sizeof(m_test_config));
m_test_config.type = UNMODULATED_TX;
m_test_config.mode = NRF_RADIO_MODE_BLE_1MBIT;
m_test_config.params.unmodulated_tx.txpower = NRF_RADIO_TXPOWER_0DBM;
m_test_config.params.unmodulated_tx.channel = 0;
radio_test_start(&m_test_config);
}
Thank you.