<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SPI Communication between STM32F4 and Rigado R41Z in Wireless MCU</title>
    <link>https://community.nxp.com/t5/Wireless-MCU/SPI-Communication-between-STM32F4-and-Rigado-R41Z/m-p/818264#M5363</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tested the slave example and it seems to be working fine.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_8.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/76348i583E116BE0611D68/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_8.png" alt="pastedImage_8.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P style="text-align: center;"&gt;Slave&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_6.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/76349i3C8D50A67FCD53B1/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_6.png" alt="pastedImage_6.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P style="text-align: center;"&gt;Master&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you sure that you are connecting the devices as it is mentioned in the example? Even though&amp;nbsp;you are not working with the master example of the Rigado&amp;nbsp;board please confirm the connections are well made.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, something important regarding the connections how are the J26 and the J27 set in your board? Are those set in the correct functionality?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another thing you will need to check it's the clock configuration in both devices?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Estephania&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Oct 2018 17:50:48 GMT</pubDate>
    <dc:creator>stephanie_m</dc:creator>
    <dc:date>2018-10-25T17:50:48Z</dc:date>
    <item>
      <title>SPI Communication between STM32F4 and Rigado R41Z</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/SPI-Communication-between-STM32F4-and-Rigado-R41Z/m-p/818263#M5362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I want to do an spi communication between STM32F405RGT6 and a&amp;nbsp;&amp;nbsp;Rigado R41Z. the stm32f4 is a master and the R41Z is a slave. So, i choice the cmisis_driver_examples_dspi_edma_ b2b_transfer_slave.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i used a simple code to transfer data from stm32 by using stm32cube mx:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void StartTask02(void const * argument)&lt;BR /&gt;{&lt;BR /&gt; /* USER CODE BEGIN StartTask02 */&lt;BR /&gt; /* Infinite loop */&lt;BR /&gt; uint8_t test[64] = {2};&lt;/P&gt;&lt;P&gt;for(;;)&lt;BR /&gt; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;HAL_SPI_Transmit_IT(&amp;amp;hspi1,&amp;amp;test[64],1) ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;osDelay(1000);&lt;BR /&gt; }&lt;BR /&gt; /* USER CODE END StartTask02 */&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i don't received the data in the R41Z. i see that the&amp;nbsp;&lt;SPAN&gt;slaveRxData in this command &lt;/SPAN&gt;&amp;nbsp;DRIVER_SLAVE_SPI.Receive(slaveRxData, TRANSFER_SIZE) is always zero. Can you give me some idea about this issue&amp;nbsp;&lt;SPAN style="color: #000000; background-color: #ffffff; font-size: 11px;"&gt;?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I will appreciate all your&amp;nbsp;comments.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Oct 2018 16:46:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/SPI-Communication-between-STM32F4-and-Rigado-R41Z/m-p/818263#M5362</guid>
      <dc:creator>yassine_jmili</dc:creator>
      <dc:date>2018-10-22T16:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: SPI Communication between STM32F4 and Rigado R41Z</title>
      <link>https://community.nxp.com/t5/Wireless-MCU/SPI-Communication-between-STM32F4-and-Rigado-R41Z/m-p/818264#M5363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tested the slave example and it seems to be working fine.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_8.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/76348i583E116BE0611D68/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_8.png" alt="pastedImage_8.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P style="text-align: center;"&gt;Slave&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_6.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/76349i3C8D50A67FCD53B1/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_6.png" alt="pastedImage_6.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P style="text-align: center;"&gt;Master&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you sure that you are connecting the devices as it is mentioned in the example? Even though&amp;nbsp;you are not working with the master example of the Rigado&amp;nbsp;board please confirm the connections are well made.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, something important regarding the connections how are the J26 and the J27 set in your board? Are those set in the correct functionality?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another thing you will need to check it's the clock configuration in both devices?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Estephania&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2018 17:50:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Wireless-MCU/SPI-Communication-between-STM32F4-and-Rigado-R41Z/m-p/818264#M5363</guid>
      <dc:creator>stephanie_m</dc:creator>
      <dc:date>2018-10-25T17:50:48Z</dc:date>
    </item>
  </channel>
</rss>

