<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>nrf52 radio test example 100% duty transmit in prbs9</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/86738/nrf52-radio-test-example-100-duty-transmit-in-prbs9</link><description>hi thanks for you heip! 
 i want use \nRF5_SDK_17.1.0_ddde560\examples\peripheral\radio_test for radio test, here is the questions: 
 1、could this example can send prbs9 wave in 100% duty cycle on single channel?if it could，whitch cammand should i use</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 11 Apr 2022 15:25:29 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/86738/nrf52-radio-test-example-100-duty-transmit-in-prbs9" /><item><title>RE: nrf52 radio test example 100% duty transmit in prbs9</title><link>https://devzone.nordicsemi.com/thread/362903?ContentTypeID=1</link><pubDate>Mon, 11 Apr 2022 15:25:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bff96c96-6f3e-49ff-952b-22d4466614ec</guid><dc:creator>JONATHAN LL</dc:creator><description>&lt;p&gt;I am not certain that a 100% duty cycle is possible. But what are you testing?&amp;nbsp;&lt;br /&gt;&lt;br /&gt;Do you need prbs9 ?&amp;nbsp;&lt;br /&gt;&lt;br /&gt;Could a constant carrier be what you want to use? It can be done&amp;nbsp; with a100% duty cycle.&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Jonathan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52 radio test example 100% duty transmit in prbs9</title><link>https://devzone.nordicsemi.com/thread/362688?ContentTypeID=1</link><pubDate>Sat, 09 Apr 2022 02:41:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:796c3fbe-6a1c-463c-843a-e132ad07347e</guid><dc:creator>Liny</dc:creator><description>&lt;p&gt;&amp;rdquo;The DTM example does provide&amp;nbsp; prbs9 packets.&amp;rdquo;&lt;/p&gt;
&lt;p&gt;hi jonathan，could&amp;nbsp; DTM example send prbs9 in 100% Duty Cycle? i use 8004(length = 1) and 8094 (length = 37),and found the duty cycle of wave isn&amp;#39;t 100%, how to achieve 100% dutycycle in prbs9 wave?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52 radio test example 100% duty transmit in prbs9</title><link>https://devzone.nordicsemi.com/thread/362663?ContentTypeID=1</link><pubDate>Fri, 08 Apr 2022 17:52:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9f29b805-8ab7-4e25-99f9-d634717d73db</guid><dc:creator>JONATHAN LL</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;What type of test do you want to preform? is it for certification ?&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
[quote user=""]3、what‘’s the wave type of “&lt;code&gt;start_tx_modulated_carrier”？prbs9？&lt;/code&gt;[/quote]
&lt;p&gt;I am not sure if it is prbs9, but the data is random when you use the modulated carrier command, see&amp;nbsp;&lt;a href="https://github.com/nrfconnect/sdk-nrf/blob/1ffe68159755ad5666296ea4b34bec9c8d4f17b1/samples/peripheral/radio_test/src/radio_test.c#L271"&gt;https://github.com/nrfconnect/sdk-nrf/blob/1ffe68159755ad5666296ea4b34bec9c8d4f17b1/samples/peripheral/radio_test/src/radio_test.c#L271&lt;/a&gt;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
[quote user=""]2、could “&lt;code&gt;start_duty_cycle_modulated_tx&lt;/code&gt;” command send 100% duty cycle?[/quote]
&lt;p&gt;Can be set to 99% not 100%. In the Radio test code you can see how it is handled.&lt;br /&gt;&lt;a href="https://github.com/nrfconnect/sdk-nrf/blob/935db5c5339824d2fc8ea53b45bb747c4ede846b/samples/peripheral/radio_test/src/radio_cmd.c#L297"&gt;https://github.com/nrfconnect/sdk-nrf/blob/935db5c5339824d2fc8ea53b45bb747c4ede846b/samples/peripheral/radio_test/src/radio_cmd.c#L297&lt;/a&gt;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;code&gt;if (duty_cycle &amp;gt; 100) {&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; shell_error(shell, &amp;quot;Duty cycle must be between 1 and 99.&amp;quot;);&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return -EINVAL;&lt;/code&gt;&lt;br /&gt;&lt;code&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
[quote user=""]1、could this example can send prbs9 wave in 100% duty cycle on single channel?if it could，whitch cammand should i use？if this radio test example can‘t， is there anyway to achieve it?[/quote]
&lt;p&gt;The DTM example does provide&amp;nbsp; prbs9 packets. &lt;br /&gt;link:&lt;br /&gt;&amp;nbsp;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/samples/bluetooth/direct_test_mode/README.html"&gt;https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/samples/bluetooth/direct_test_mode/README.html&lt;/a&gt;&amp;nbsp;&lt;br /&gt;&lt;a href="https://github.com/nrfconnect/sdk-nrf/tree/935db5c5339824d2fc8ea53b45bb747c4ede846b/samples/bluetooth/direct_test_mode"&gt;sdk-nrf/samples/bluetooth/direct_test_mode at 935db5c5339824d2fc8ea53b45bb747c4ede846b · nrfconnect/sdk-nrf · GitHub&lt;/a&gt;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Jonathan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>