<?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>nrf24lu1+ and nrf24l01+ communication.</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/11676/nrf24lu1-and-nrf24l01-communication</link><description>How should the addressing be between an nrf24LU1+(transmitter) and nrf24l01+(Reciever) in the code.? 
 The registers TX_ADDR, RX_ADDR_P0, RX_ADDR_P1 are updated on a device as I know. 
 In order to set the own address of a device, which registers should</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 08 Feb 2016 10:47:25 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/11676/nrf24lu1-and-nrf24l01-communication" /><item><title>RE: nrf24lu1+ and nrf24l01+ communication.</title><link>https://devzone.nordicsemi.com/thread/44143?ContentTypeID=1</link><pubDate>Mon, 08 Feb 2016 10:47:25 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d80299cf-a3bc-4218-9385-a482cc1fbb8c</guid><dc:creator>Kenneth</dc:creator><description>&lt;p&gt;The tx_address must be the same for both PTX and PRX as shown above. The PRX can setup a HAL_NRF_PIPE1 with a another tx_address to receive data from a second PTX.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf24lu1+ and nrf24l01+ communication.</title><link>https://devzone.nordicsemi.com/thread/44142?ContentTypeID=1</link><pubDate>Fri, 05 Feb 2016 17:04:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:37036ef6-a3cf-4c0e-9c2a-691d6d0263b7</guid><dc:creator>Pradeep Chl</dc:creator><description>&lt;p&gt;You have used tx_address in both PTX and PRX, does tx_address value differ in PTX and PRX or same? You have not set HAL_NRF_PIPE1 on both PTX and PRX.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf24lu1+ and nrf24l01+ communication.</title><link>https://devzone.nordicsemi.com/thread/44141?ContentTypeID=1</link><pubDate>Thu, 04 Feb 2016 08:50:21 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9c2ae7f5-8b51-4fd2-b61c-a26344c1deec</guid><dc:creator>Pradeep Chl</dc:creator><description>&lt;p&gt;How did you define the own address of PTX or PRX? As I understood, you have setup the address of the other device for PTX and PRX. Please elaborate.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf24lu1+ and nrf24l01+ communication.</title><link>https://devzone.nordicsemi.com/thread/44140?ContentTypeID=1</link><pubDate>Tue, 02 Feb 2016 19:16:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:42bbbcc9-d116-4868-8224-967f89198fec</guid><dc:creator>Kenneth</dc:creator><description>&lt;p&gt;There is an application note named &amp;#39;nAN24-12 - Software Examples Using ShockBurst&lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/2122.svg" title="Tm"&gt;&amp;#x2122;&lt;/span&gt; Modes in nRF24L01 and nRF24LU1&amp;#39; that might be helpful here, you should download the nAN24-12.zip so you also get the example code.&lt;/p&gt;
&lt;p&gt;The PTX might use the following to change the address of the packet to transmit:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;hal_nrf_set_address_width(HAL_NRF_AW_5BYTES); 
hal_nrf_set_address(HAL_NRF_TX, tx_address);
hal_nrf_set_address(HAL_NRF_PIPE0, tx_address); // Required to receive the ACK.
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The PRX can use:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;hal_nrf_set_address_width(HAL_NRF_AW_5BYTES); 
hal_nrf_set_address(HAL_NRF_PIPE0, tx_address); 
&lt;/code&gt;&lt;/pre&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>