I need to tune the matching circuit for antena and I need pure radio carrier signal,
How to get this?
I need to tune the matching circuit for antena and I need pure radio carrier signal,
How to get this?
You'll need to use the Direct Test Mode functionality for the BLE.
There are examples, but they mainly revolve around using external hardware to drive the DTM functions over UART (which will be needed for certification), but it is possible to do this with direct code yourself.
I can't remember the exact code, but I'll have a look.
Edit: I think that you'll need something like
dtm_init(); dtm_cmd(CARRIER_TEST, 19, 0,0);// start carrier with no modulation channel 19 . . . dtm_cmd(LE_TEST_END,0,0,0);
Hi,
you can use the Radio test example in the SDK;
'start_tx_modulated_carrier' modulated, 'start_tx_carrier' not modulated.
See: https://infocenter.nordicsemi.com/topic/com.nordic.infocenter.sdk5.v15.3.0/nrf_radio_test_example.html?cp=5_1_4_6_29
Best regards,
Kaja