<?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>S32KのトピックRe: SPI issue S32k144 interfacing with RF Chip</title>
    <link>https://community.nxp.com/t5/S32K/SPI-issue-S32k144-interfacing-with-RF-Chip/m-p/1528695#M18005</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;seems you did not enable clock properly for PORTC. So change a line&lt;/P&gt;&lt;P&gt;PCC-&amp;gt; PCCn[PCC_PORTD_INDEX] = PCC_PCCn_CGC_MASK; /* Enable clock to PORT D */&lt;/P&gt;&lt;P&gt;with&amp;nbsp;&lt;/P&gt;&lt;P&gt;PCC-&amp;gt; PCCn[PCC_PORTD_INDEX] |= PCC_PCCn_CGC_MASK; /* Enable clock to PORT D */&lt;BR /&gt;PCC-&amp;gt; PCCn[PCC_PORTC_INDEX] |= PCC_PCCn_CGC_MASK; /* Enable clock to PORT C */&lt;/P&gt;&lt;P&gt;then it passes port init and you should see signal on SPI output.&lt;/P&gt;&lt;P&gt;BR, Petr&lt;/P&gt;</description>
    <pubDate>Tue, 27 Sep 2022 09:15:54 GMT</pubDate>
    <dc:creator>PetrS</dc:creator>
    <dc:date>2022-09-27T09:15:54Z</dc:date>
    <item>
      <title>SPI issue S32k144 interfacing with RF Chip</title>
      <link>https://community.nxp.com/t5/S32K/SPI-issue-S32k144-interfacing-with-RF-Chip/m-p/1528005#M17963</link>
      <description>&lt;P&gt;Hallo, I am a new user to S32k1xx series of MCU and working on my master thesis. I`m having some trouble interfacing an RF Chip to my µc. Once my API is executed, it is reported as hardware fault, and i cant identify the mistake. I want to just check if the SCK is active and MOSI is sending the data. Can someone please give me some guidance, i am not able to find support for this project, as S32k1xx is fairly new to some developers i know.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Sep 2022 08:42:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/SPI-issue-S32k144-interfacing-with-RF-Chip/m-p/1528005#M17963</guid>
      <dc:creator>Adhi_11</dc:creator>
      <dc:date>2022-09-26T08:42:48Z</dc:date>
    </item>
    <item>
      <title>Re: SPI issue S32k144 interfacing with RF Chip</title>
      <link>https://community.nxp.com/t5/S32K/SPI-issue-S32k144-interfacing-with-RF-Chip/m-p/1528695#M18005</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;seems you did not enable clock properly for PORTC. So change a line&lt;/P&gt;&lt;P&gt;PCC-&amp;gt; PCCn[PCC_PORTD_INDEX] = PCC_PCCn_CGC_MASK; /* Enable clock to PORT D */&lt;/P&gt;&lt;P&gt;with&amp;nbsp;&lt;/P&gt;&lt;P&gt;PCC-&amp;gt; PCCn[PCC_PORTD_INDEX] |= PCC_PCCn_CGC_MASK; /* Enable clock to PORT D */&lt;BR /&gt;PCC-&amp;gt; PCCn[PCC_PORTC_INDEX] |= PCC_PCCn_CGC_MASK; /* Enable clock to PORT C */&lt;/P&gt;&lt;P&gt;then it passes port init and you should see signal on SPI output.&lt;/P&gt;&lt;P&gt;BR, Petr&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2022 09:15:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/SPI-issue-S32k144-interfacing-with-RF-Chip/m-p/1528695#M18005</guid>
      <dc:creator>PetrS</dc:creator>
      <dc:date>2022-09-27T09:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: SPI issue S32k144 interfacing with RF Chip</title>
      <link>https://community.nxp.com/t5/S32K/SPI-issue-S32k144-interfacing-with-RF-Chip/m-p/1529452#M18031</link>
      <description>&lt;P&gt;Hello Petr,&lt;/P&gt;&lt;P&gt;I have modified the same and tried to send the data again, and unfortunately its not working for me. I have set PTB17 as GPIO, output as chip select. Theres also a function called chip enable, on PTD0 which is internally connected to BLUE LED. So i think it is the problem with my SPI transmit function, because at the end of my NRF24_Init() the chip enable should be high or maybe i didnt configure a delay between transfers. All my transfers should be 8 bits to the chip. Could you please replicate this behaviour and see if you can get the SCK and MOSI running, also please advice me what to do because i am stuck here.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Adhi&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 14:47:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/SPI-issue-S32k144-interfacing-with-RF-Chip/m-p/1529452#M18031</guid>
      <dc:creator>Adhi_11</dc:creator>
      <dc:date>2022-09-28T14:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: SPI issue S32k144 interfacing with RF Chip</title>
      <link>https://community.nxp.com/t5/S32K/SPI-issue-S32k144-interfacing-with-RF-Chip/m-p/1532010#M18105</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;please use attached code. I did modification in pin init and CS handling. Also I modified&amp;nbsp;nrf24_WriteReg function. Below is what I see for&amp;nbsp;NRF24_Init&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PetrS_0-1664872995718.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/195679i4B064676CBF499F6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="PetrS_0-1664872995718.png" alt="PetrS_0-1664872995718.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR, Petr&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 08:43:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/SPI-issue-S32k144-interfacing-with-RF-Chip/m-p/1532010#M18105</guid>
      <dc:creator>PetrS</dc:creator>
      <dc:date>2022-10-04T08:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: SPI issue S32k144 interfacing with RF Chip</title>
      <link>https://community.nxp.com/t5/S32K/SPI-issue-S32k144-interfacing-with-RF-Chip/m-p/1534473#M18183</link>
      <description>&lt;P&gt;Thanks for checking. But now there seems to be a problem. I saw the output in my DSO a few days ago. But now its not working again. I even put the data tranmsit function on the for loop and it worked, but now the execution stops at the check TX fifo loop, what is even more strange is i tried the same for the example LPSPI program(non-processor expert) and the same problem. Changing the non stall bit on CFGR1 helped me last time. I don't understand this, is it the problem from hardware side. I did not made a changes on the example LPSPI, just removed the recieved function in void main, still the execution halts at the while loop as shown in picture. Kindly help me understand why.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="111.png" style="width: 817px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/196185iCED2882EF40D43A1/image-size/large?v=v2&amp;amp;px=999" role="button" title="111.png" alt="111.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="222.png" style="width: 780px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/196186iF9690A96146EE1F3/image-size/large?v=v2&amp;amp;px=999" role="button" title="222.png" alt="222.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 09 Oct 2022 10:38:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/SPI-issue-S32k144-interfacing-with-RF-Chip/m-p/1534473#M18183</guid>
      <dc:creator>Adhi_11</dc:creator>
      <dc:date>2022-10-09T10:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: SPI issue S32k144 interfacing with RF Chip</title>
      <link>https://community.nxp.com/t5/S32K/SPI-issue-S32k144-interfacing-with-RF-Chip/m-p/1822019#M32526</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/206822"&gt;@Adhi_11&lt;/a&gt;. Were you able to resolve this problem? I am currently experiencing the same issue.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Mar 2024 02:58:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/SPI-issue-S32k144-interfacing-with-RF-Chip/m-p/1822019#M32526</guid>
      <dc:creator>daniellet</dc:creator>
      <dc:date>2024-03-06T02:58:08Z</dc:date>
    </item>
  </channel>
</rss>

