How to generate BLE TX bursts when using radio test sample

Hello, 

I'm using devkit board nrf52832dk and nRF SDK v2.7.0.

I would like to generate TX modulated bursts using radio test sample https://github.com/nrfconnect/sdk-nrf/tree/v2.7.0/samples/peripheral/radio_test. I would like to know how to do this. Can I achieve this doing:

while true; do
    start_tx_modulated_carrier
    sleep 0.1  # Duration in seconds
    cancel
    sleep 0.1  # Duration in seconds
done

or

while true; do
    start_tx_carrier
    sleep 0.1  # Duration in seconds
    cancel
    sleep 0.1  # Duration in seconds
done

Thanks in advance!

Parents Reply Children
No Data
Related