<?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>BLE 5 transmiter/receiver examples nRFF52840</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/19945/ble-5-transmiter-receiver-examples-nrff52840</link><description>I would like to implement Bluetooth 5 packet exchange without the softdevice. 
 How can we convert the
nRF5_SDK\examples\peripheral\radio\receiver
nRF5_SDK\examples\peripheral\radio\transmitter
examples to Bluetooth 5? 
 I changed the following lines</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 18 Feb 2020 15:45:30 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/19945/ble-5-transmiter-receiver-examples-nrff52840" /><item><title>RE: BLE 5 transmiter/receiver examples nRFF52840</title><link>https://devzone.nordicsemi.com/thread/234987?ContentTypeID=1</link><pubDate>Tue, 18 Feb 2020 15:45:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8ea7e6e5-75b5-44f8-ae97-3d0465e1e1c9</guid><dc:creator>usman</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In your code i am not getting this part&lt;/p&gt;
&lt;p&gt;&amp;uml;&amp;uml;&lt;span style="background-color:#ebeff2;color:#11171a;float:none;font-family:monospace,serif;font-size:1em;font-style:normal;font-weight:400;letter-spacing:normal;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:pre;"&gt;uint32_t preamble_mask = (RADIO_PCNF0_PLEN_LongRange &amp;lt;&amp;lt; RADIO_PCNF0_PLEN_Pos) | (2 &amp;lt;&amp;lt; RADIO_PCNF0_CILEN_Pos) | (3 &amp;lt;&amp;lt; RADIO_PCNF0_TERMLEN_Pos);&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;uml;&amp;uml;&amp;uml;&amp;uml;&lt;/p&gt;
&lt;p&gt;can you&amp;nbsp; please explain this that how to modify this part of code&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: BLE 5 transmiter/receiver examples nRFF52840</title><link>https://devzone.nordicsemi.com/thread/77618?ContentTypeID=1</link><pubDate>Thu, 23 Feb 2017 10:10:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5a8bc986-2f2f-4b67-b331-f36e6560a014</guid><dc:creator>Ole Bauck</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;These are the changes you need to do to make it work in BLE Long Range mode:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;#define PACKET_BASE_ADDRESS_LENGTH  (3UL)
...
#define PACKET_S1_FIELD_SIZE      (1UL)
#define PACKET_S0_FIELD_SIZE      (2UL)
#define PACKET_LENGTH_FIELD_SIZE  (8UL)
...
NRF_RADIO-&amp;gt;MODE      = (RADIO_MODE_MODE_Ble_LR125Kbit &amp;lt;&amp;lt; RADIO_MODE_MODE_Pos);
...
uint32_t preamble_mask =	(RADIO_PCNF0_PLEN_LongRange &amp;lt;&amp;lt; RADIO_PCNF0_PLEN_Pos) |
							(2                          &amp;lt;&amp;lt; RADIO_PCNF0_CILEN_Pos) |
							(3                          &amp;lt;&amp;lt; RADIO_PCNF0_TERMLEN_Pos);

NRF_RADIO-&amp;gt;PCNF0 = (PACKET_S1_FIELD_SIZE     &amp;lt;&amp;lt; RADIO_PCNF0_S1LEN_Pos) |
                   (PACKET_S0_FIELD_SIZE     &amp;lt;&amp;lt; RADIO_PCNF0_S0LEN_Pos) |
                   (PACKET_LENGTH_FIELD_SIZE &amp;lt;&amp;lt; RADIO_PCNF0_LFLEN_Pos) |
				   preamble_mask;
...
NRF_RADIO-&amp;gt;CRCCNF = (RADIO_CRCCNF_SKIPADDR_Skip    &amp;lt;&amp;lt; RADIO_CRCCNF_SKIPADDR_Pos) |
					(RADIO_CRCCNF_LEN_Three        &amp;lt;&amp;lt; RADIO_CRCCNF_LEN_Pos);
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Ole&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>