Hello,
I am working on the factory test mode and I want to add a carrier test, is there a function from the S110 softdevice library that I could use?
Thank you for your attention! Joseph
Hello,
I am working on the factory test mode and I want to add a carrier test, is there a function from the S110 softdevice library that I could use?
Thank you for your attention! Joseph
you can modify this example :nrf51822\board\nrf6310\radio_test_example,it can directly generate carrier,and you can observe it on a spectrum analyzer.i have modified successful,i can offer it for someday when i have time.
Hi Andy,
Thanks for your information!
The radio_test_example does not call any sd_* function, instead, it access the radio port directly, so I have to disable the S110 softdevice first, is that correct?
Best Regards, Joseph
Hi Andy,
Thanks for your information!
The radio_test_example does not call any sd_* function, instead, it access the radio port directly, so I have to disable the S110 softdevice first, is that correct?
Best Regards, Joseph
Yes, this is correct. You can also take a look at the ble_app_dtm, which also does not use the softdevice, but provides a serial Direct Test Mode (DTM) interface that is known by most BLE testers.
Thank you!