<?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>CodeWarrior Development ToolsのトピックRe: Problems of SPI in K60</title>
    <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Problems-of-SPI-in-K60/m-p/1026439#M8168</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Jing Pan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Can you please explain to set that peripherals, as SPI0 is using 6 bits for setting the peripheral.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Mohammedrasool&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Jan 2020 08:44:10 GMT</pubDate>
    <dc:creator>mdrasool_yadwad</dc:creator>
    <dc:date>2020-01-21T08:44:10Z</dc:date>
    <item>
      <title>Problems of SPI in K60</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Problems-of-SPI-in-K60/m-p/1026437#M8166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;I am using SPI protocol for interfacing with the external ram 23LCV1024 with the K60 microcontroller. I am not using the Fifos directly writing the data on to the push register. K60 as the master mode with 12.5 Mhz baud and 8 bit frame . While writing on to the 23LCV1024 it is working correctly but while reading it is not giving the correct written values. I am not getting what is the problem with it can anyone please help me in this. My code is attached with this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 18 Jan 2020 04:16:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Problems-of-SPI-in-K60/m-p/1026437#M8166</guid>
      <dc:creator>mdrasool_yadwad</dc:creator>
      <dc:date>2020-01-18T04:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: Problems of SPI in K60</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Problems-of-SPI-in-K60/m-p/1026438#M8167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In your code, you set PCS as bellow,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SPI-&amp;gt;PUSHR=SPI_PUSHR_PCS(0x03)....;&lt;/P&gt;&lt;P&gt;Do you mean you want to set 2 PCS line simultaneously? I guess you may want to set PCS3. That should be SPI_PUSHR_PCS(1&amp;lt;&amp;lt;3).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jing&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2020 08:00:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Problems-of-SPI-in-K60/m-p/1026438#M8167</guid>
      <dc:creator>jingpan</dc:creator>
      <dc:date>2020-01-21T08:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problems of SPI in K60</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Problems-of-SPI-in-K60/m-p/1026439#M8168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Jing Pan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Can you please explain to set that peripherals, as SPI0 is using 6 bits for setting the peripheral.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Mohammedrasool&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2020 08:44:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Problems-of-SPI-in-K60/m-p/1026439#M8168</guid>
      <dc:creator>mdrasool_yadwad</dc:creator>
      <dc:date>2020-01-21T08:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problems of SPI in K60</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Problems-of-SPI-in-K60/m-p/1026440#M8169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Each bit in PUSHR.PCS represent a CSx signal. You can see in the enum definition in fsl_dspi.h&lt;/P&gt;&lt;P&gt;typedef enum _dspi_which_pcs_config&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; kDSPI_Pcs0 = 1U &amp;lt;&amp;lt; 0, /*!&amp;lt; Pcs[0] */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; kDSPI_Pcs1 = 1U &amp;lt;&amp;lt; 1, /*!&amp;lt; Pcs[1] */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; kDSPI_Pcs2 = 1U &amp;lt;&amp;lt; 2, /*!&amp;lt; Pcs[2] */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; kDSPI_Pcs3 = 1U &amp;lt;&amp;lt; 3, /*!&amp;lt; Pcs[3] */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; kDSPI_Pcs4 = 1U &amp;lt;&amp;lt; 4, /*!&amp;lt; Pcs[4] */&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; kDSPI_Pcs5 = 1U &amp;lt;&amp;lt; 5&amp;nbsp; /*!&amp;lt; Pcs[5] */&lt;BR /&gt;} dspi_which_pcs_t;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jing&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jan 2020 06:32:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Problems-of-SPI-in-K60/m-p/1026440#M8169</guid>
      <dc:creator>jingpan</dc:creator>
      <dc:date>2020-01-22T06:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problems of SPI in K60</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Problems-of-SPI-in-K60/m-p/1026441#M8170</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;Hello Jing Pan,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;Thank you for this. I will check once again with this changes and will check whether spi is working or not.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Mohammedrasool&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jan 2020 10:02:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Problems-of-SPI-in-K60/m-p/1026441#M8170</guid>
      <dc:creator>mdrasool_yadwad</dc:creator>
      <dc:date>2020-01-22T10:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problems of SPI in K60</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Problems-of-SPI-in-K60/m-p/1170106#M8473</link>
      <description>&lt;P&gt;Hello Sir,&lt;/P&gt;&lt;P&gt;I attached document please check it once. In SPI0 the document of tower board is showing chip select 4 as Output. What does it mean we cant able to write or read&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2020 06:57:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Problems-of-SPI-in-K60/m-p/1170106#M8473</guid>
      <dc:creator>mdrasool_yadwad</dc:creator>
      <dc:date>2020-10-20T06:57:35Z</dc:date>
    </item>
  </channel>
</rss>

