<?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>NRF24L01+ TX and RX Timing Issue ?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/38437/nrf24l01-tx-and-rx-timing-issue</link><description>Hi all. I use a STM32F103C8T6 as a transmitter and an Arduino Uno as a receiver. I cannot receive the value I am interested in. I have changed delay durations after each send and also CE pulse. I sometimes get it worked on spec by playing with delay durations</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 18 Sep 2018 08:27:12 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/38437/nrf24l01-tx-and-rx-timing-issue" /><item><title>RE: NRF24L01+ TX and RX Timing Issue ?</title><link>https://devzone.nordicsemi.com/thread/149170?ContentTypeID=1</link><pubDate>Tue, 18 Sep 2018 08:27:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bbc9d56d-803c-4336-8b51-cae81444bbeb</guid><dc:creator>run_ar</dc:creator><description>&lt;p&gt;Here you are: &lt;a href="https://www.nordicsemi.com/eng/Products/2.4GHz-RF/nRFgo-SDK"&gt;https://www.nordicsemi.com/eng/Products/2.4GHz-RF/nRFgo-SDK&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF24L01+ TX and RX Timing Issue ?</title><link>https://devzone.nordicsemi.com/thread/149071?ContentTypeID=1</link><pubDate>Mon, 17 Sep 2018 13:51:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f18caba1-1432-469c-9ac8-98a1c10188f9</guid><dc:creator>PIC16F84A</dc:creator><description>&lt;p&gt;Hi. It is not a nordic lib. The library is prepared by me.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Could you please share the link of the example ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: NRF24L01+ TX and RX Timing Issue ?</title><link>https://devzone.nordicsemi.com/thread/149057?ContentTypeID=1</link><pubDate>Mon, 17 Sep 2018 13:19:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8e9bb41c-28cb-4e3e-bf76-2c4dd397495c</guid><dc:creator>run_ar</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Is this a nordic library?&lt;/p&gt;
&lt;p&gt;If you look at one of our examples. e.g. nRFgo SDK 2.3.0.10040\source_code\projects\nrfgo_sdk\enhanced_shockburst_examples\ptx\Keil\nRF24le1&lt;/p&gt;
&lt;p&gt;You can see that we do something like this:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;    // Write payload to radio TX FIFO
    hal_nrf_write_tx_payload(payload, 3U);

    // Toggle radio CE signal to start transmission
    CE_PULSE();

    radio_busy = true;
    // Wait for radio operation to finish
    while (radio_busy)
    {
    }&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Then in the ISR we do this:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;NRF_ISR()
{
  uint8_t irq_flags;

  // Read and clear IRQ flags from radio
  irq_flags = hal_nrf_get_clear_irq_flags();

  switch(irq_flags)
  {
    // Transmission success
    case (1 &amp;lt;&amp;lt; (uint8_t)HAL_NRF_TX_DS):
      radio_busy = false;
      // Data has been sent
      break;
    // Transmission failed (maximum re-transmits)
    case (1 &amp;lt;&amp;lt; (uint8_t)HAL_NRF_MAX_RT):
      // When a MAX_RT interrupt occurs the TX payload will not be removed from the TX FIFO.
      // If the packet is to be discarded this must be done manually by flushing the TX FIFO.
      // Alternatively, CE_PULSE() can be called re-starting transmission of the payload.
      // (Will only be possible after the radio irq flags are cleared)
      hal_nrf_flush_tx();
      radio_busy = false;
      break;
    default:
      break;
  }&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>