<?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: How do I know if the SPI slave has received the data? in S32 SDK</title>
    <link>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849987#M751</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;SPAN style="color: #004000; background-color: #ffffff;"&gt;Byugnju,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #004000; background-color: #ffffff;"&gt;sure - project is in attachment.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #004000; background-color: #ffffff;"&gt;Jiri&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Aug 2018 05:43:07 GMT</pubDate>
    <dc:creator>jiri_kral</dc:creator>
    <dc:date>2018-08-13T05:43:07Z</dc:date>
    <item>
      <title>How do I know if the SPI slave has received the data?</title>
      <link>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849975#M739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I implements SPI slave on S32K144 EVB by using SDK EAR 0.8.6 with S32DS for ARM.2018.R1.&lt;/P&gt;&lt;P&gt;But I don't know how to know the SPI slave received the data.&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN&gt;Is there a function that tells us that the data was received?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Or should I check the chip select PIN?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;How do I read the chip select PIN?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Please tell me how to know that the slave has received the data.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN&gt;Byungju&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jul 2018 00:11:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849975#M739</guid>
      <dc:creator>kbj</dc:creator>
      <dc:date>2018-07-25T00:11:05Z</dc:date>
    </item>
    <item>
      <title>Re: How do I know if the SPI slave has received the data?</title>
      <link>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849976#M740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use blocking transfer - the function returns when transfer is done. For non-blocking transfer - you can check status by&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPI_GetStatus(const spi_instance_t * const instance)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function. If you get&amp;nbsp;STATUS_BUSY - transfer is in progress.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jiri&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2018 07:57:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849976#M740</guid>
      <dc:creator>jiri_kral</dc:creator>
      <dc:date>2018-07-30T07:57:40Z</dc:date>
    </item>
    <item>
      <title>Re: How do I know if the SPI slave has received the data?</title>
      <link>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849977#M741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jiri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the SPI slave receive a data, do the function, SPI_GetStatus(), return STATUS_BUSY?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Byungju.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2018 08:23:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849977#M741</guid>
      <dc:creator>kbj</dc:creator>
      <dc:date>2018-07-30T08:23:09Z</dc:date>
    </item>
    <item>
      <title>Re: How do I know if the SPI slave has received the data?</title>
      <link>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849978#M742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Byungju&lt;/SPAN&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sure what exactly do you mean - The SDK GetStatus() function returns BUSY when transfer is in progress . This is usable for some kind of message timing (to be sure that previous transfer is done before you start another one) in non-blocking mode.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you&amp;nbsp; mean something like slave acknowledges that data are okay - you need to implement it by yourself in your message protocol (for example slave can send back to master "okay with CRC" message).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jiri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 11:19:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849978#M742</guid>
      <dc:creator>jiri_kral</dc:creator>
      <dc:date>2018-07-31T11:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: How do I know if the SPI slave has received the data?</title>
      <link>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849979#M743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Jiri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN&gt;It seems that my question has not been well communicated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If I implement an SPI slave&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;When the Master initiates a data transfer, how does the slave detect if the data transfer has started?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN&gt;BestRegards,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN&gt;Byungju.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2018 01:13:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849979#M743</guid>
      <dc:creator>kbj</dc:creator>
      <dc:date>2018-08-07T01:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: How do I know if the SPI slave has received the data?</title>
      <link>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849980#M744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Hi&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff; border: 0px;"&gt;Byungju&lt;/SPAN&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;You can install SPI_Slave callback function and check the events you are interested in.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;For example:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;void MySlaveCallback(void *driverState, spi_event_t event, void *userData)&lt;BR /&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;/* Handle your SPI Slave envent here */&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt; SlaveConfig0.callback=&amp;amp;MySlaveCallback;&lt;BR /&gt; SPI_SlaveInit(&amp;amp;spi2Instance, &amp;amp;SlaveConfig0);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Hope it helps.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Jiri&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2018 11:36:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849980#M744</guid>
      <dc:creator>jiri_kral</dc:creator>
      <dc:date>2018-08-07T11:36:16Z</dc:date>
    </item>
    <item>
      <title>Re: How do I know if the SPI slave has received the data?</title>
      <link>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849981#M745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jiri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN&gt;Is the callback function called when the slave starts data transfer?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;As a result of checking, the callback function was called only when the slave had to transfer data.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;My desired behavior is that when the Master starts data transfer, the Callback function is called and the slave starts to transfer data.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="display: none;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: none;"&gt;Thnka&lt;/SPAN&gt;Thanks and best regards,&lt;/P&gt;&lt;P&gt;Byungju.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2018 00:21:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849981#M745</guid>
      <dc:creator>kbj</dc:creator>
      <dc:date>2018-08-08T00:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: How do I know if the SPI slave has received the data?</title>
      <link>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849982#M746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jiri,&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN lang="en"&gt;&lt;SPAN&gt;I do not know what I made a mistake, but the SPI communication is not stable when using the callback function.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you provide example code for SPI communications using the callback function?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am developing with S32DS for ARM.2018.R1 and SDK EAR 0.8.6.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am always thankful for your help.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Byungju.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2018 05:20:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849982#M746</guid>
      <dc:creator>kbj</dc:creator>
      <dc:date>2018-08-09T05:20:10Z</dc:date>
    </item>
    <item>
      <title>Re: How do I know if the SPI slave has received the data?</title>
      <link>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849983#M747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you are right. With SDK it is not possible check if slave data are ready - data are automatically passed into receive buffer without any notification. All the LSPI0 register related stuff is done on background. If you need such feature - the only way is write your own driver. You can reuse LPSPI non&amp;nbsp; SDK example:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/59678i01E77E43E659CBD5/image-size/large?v=v2&amp;amp;px=999" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jiri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2018 09:52:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849983#M747</guid>
      <dc:creator>jiri_kral</dc:creator>
      <dc:date>2018-08-09T09:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: How do I know if the SPI slave has received the data?</title>
      <link>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849984#M748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jiri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;If you don't mind,&amp;nbsp;Could you provide a sample code that uses an SPI callback function?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Byungju.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2018 23:36:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849984#M748</guid>
      <dc:creator>kbj</dc:creator>
      <dc:date>2018-08-09T23:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do I know if the SPI slave has received the data?</title>
      <link>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849985#M749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;unfortunately there is no such example ( if you mean by callback function the notification ability when SPI Slave receive data). But you can adapt the example mentioned above and add interrupt handler.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jiri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2018 14:29:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849985#M749</guid>
      <dc:creator>jiri_kral</dc:creator>
      <dc:date>2018-08-10T14:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do I know if the SPI slave has received the data?</title>
      <link>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849986#M750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jiri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: transparent; color: #222222; font-family: arial,sans-serif; font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; min-height: 0px; orphans: 2; position: static; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; word-wrap: break-word; z-index: auto;"&gt;The example code I want is the example code that uses the call back fucionation of the existing SPI SDK.&lt;/SPAN&gt;&lt;BR style="background-color: transparent; color: #222222; font-family: arial,sans-serif; font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; min-height: 0px; orphans: 2; position: static; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; word-wrap: break-word; z-index: auto;" /&gt;&lt;SPAN style="background-color: transparent; color: #222222; font-family: arial,sans-serif; font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; min-height: 0px; orphans: 2; position: static; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px; word-wrap: break-word; z-index: auto;"&gt;Could you provide that example code?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #004000; font-family: arial,sans-serif;"&gt;Thanks and best regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #004000; font-family: arial,sans-serif;"&gt;Byugnju&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Aug 2018 23:22:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849986#M750</guid>
      <dc:creator>kbj</dc:creator>
      <dc:date>2018-08-12T23:22:39Z</dc:date>
    </item>
    <item>
      <title>Re: How do I know if the SPI slave has received the data?</title>
      <link>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849987#M751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;SPAN style="color: #004000; background-color: #ffffff;"&gt;Byugnju,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #004000; background-color: #ffffff;"&gt;sure - project is in attachment.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #004000; background-color: #ffffff;"&gt;Jiri&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2018 05:43:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849987#M751</guid>
      <dc:creator>jiri_kral</dc:creator>
      <dc:date>2018-08-13T05:43:07Z</dc:date>
    </item>
    <item>
      <title>Re: How do I know if the SPI slave has received the data?</title>
      <link>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849988#M752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jiri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Byunju.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Aug 2018 01:38:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32-SDK/How-do-I-know-if-the-SPI-slave-has-received-the-data/m-p/849988#M752</guid>
      <dc:creator>kbj</dc:creator>
      <dc:date>2018-08-16T01:38:07Z</dc:date>
    </item>
  </channel>
</rss>

