<?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>LPC Microcontrollers中的主题 Re: LPC5514 I2S SLAVE</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC5514-I2S-SLAVE/m-p/1677054#M53259</link>
    <description>thanks for reply.&lt;BR /&gt;Can LPC support config I2S bitdepth?&lt;BR /&gt;I saw SDK support set I2S datelen and framelen only.</description>
    <pubDate>Tue, 27 Jun 2023 13:40:36 GMT</pubDate>
    <dc:creator>qingyunliu</dc:creator>
    <dc:date>2023-06-27T13:40:36Z</dc:date>
    <item>
      <title>LPC5514 I2S SLAVE</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC5514-I2S-SLAVE/m-p/1675340#M53210</link>
      <description>&lt;P&gt;LPC55S69 A I2S SLAVE --&amp;gt; LPC55S69 B I2S MASTER&lt;/P&gt;&lt;P&gt;LPC55S69 B as I2S master , provide MCLK. LRCK, BCLK&amp;nbsp;to LPC55S69 A I2S SLAVE.&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;LPC55S69 A as&amp;nbsp;I2S slave,&amp;nbsp; provide audio data&lt;/FONT&gt; to LPC55S69 B I2S MASTER&lt;/P&gt;&lt;P&gt;how can I refer to which demo?&amp;nbsp;&lt;/P&gt;&lt;P&gt;IF I2S slave&amp;nbsp;want transmit audio data ,should put data to TXFIFO or RXFIFO?&lt;/P&gt;</description>
      <pubDate>Sun, 25 Jun 2023 03:53:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC5514-I2S-SLAVE/m-p/1675340#M53210</guid>
      <dc:creator>qingyunliu</dc:creator>
      <dc:date>2023-06-25T03:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: LPC5514 I2S SLAVE</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC5514-I2S-SLAVE/m-p/1675627#M53227</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;From your description, I see that you want to use two LPC5569-EVK boards to implement the I2S communication.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the SDK package, there is I2S master example&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="xiangjun_rong_0-1687757856732.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/229197i0641CE6FFB046677/image-size/medium?v=v2&amp;amp;px=400" role="button" title="xiangjun_rong_0-1687757856732.png" alt="xiangjun_rong_0-1687757856732.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For the I2S slave, you can develop the slave I2S example based on the master example.&lt;/P&gt;
&lt;P&gt;static i2s_config_t s_RxConfig;&lt;/P&gt;
&lt;P&gt;I2S_TxGetDefaultConfig(&amp;amp;s_RxConfig);&lt;BR /&gt;s_TxConfig.divider = DEMO_I2S_CLOCK_DIVIDER;&lt;BR /&gt;s_TxConfig.masterSlave =&lt;FONT color="#FF0000"&gt; kI2S_MasterSlaveNormalSlave&lt;/FONT&gt;; //DEMO_I2S_TX_MODE;&lt;BR /&gt;I2S_TxInit(I2S6, &amp;amp;s_RxConfig);&lt;/P&gt;
&lt;P&gt;In the slave mode, the SCK and WS for I2S6 will be input pins, you can assign the I2S6 pin in the pin_mux.c&lt;/P&gt;
&lt;P&gt;Hope it can help you&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;XiangJun Rong&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 05:52:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC5514-I2S-SLAVE/m-p/1675627#M53227</guid>
      <dc:creator>xiangjun_rong</dc:creator>
      <dc:date>2023-06-26T05:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: LPC5514 I2S SLAVE</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC5514-I2S-SLAVE/m-p/1677054#M53259</link>
      <description>thanks for reply.&lt;BR /&gt;Can LPC support config I2S bitdepth?&lt;BR /&gt;I saw SDK support set I2S datelen and framelen only.</description>
      <pubDate>Tue, 27 Jun 2023 13:40:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC5514-I2S-SLAVE/m-p/1677054#M53259</guid>
      <dc:creator>qingyunliu</dc:creator>
      <dc:date>2023-06-27T13:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: LPC5514 I2S SLAVE</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/LPC5514-I2S-SLAVE/m-p/1677382#M53266</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;what do you mean for the " I2S bitdepth"? do you mean that the WS occupies only one SCK cycle instead of 50% duty cycle? if it is the case, of course, it supports the WS occupies only one clock cycle of SCK.&lt;/P&gt;
&lt;P&gt;As the following Fig, the WS width is controlled by MODE bits.&lt;/P&gt;
&lt;P&gt;Hope it can help you&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;XiangJun Rong&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="xiangjun_rong_0-1687918535548.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/229727i053C7B22D920BD33/image-size/medium?v=v2&amp;amp;px=400" role="button" title="xiangjun_rong_0-1687918535548.png" alt="xiangjun_rong_0-1687918535548.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope it can help you&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;XiangJun Rong&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2023 02:17:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/LPC5514-I2S-SLAVE/m-p/1677382#M53266</guid>
      <dc:creator>xiangjun_rong</dc:creator>
      <dc:date>2023-06-28T02:17:22Z</dc:date>
    </item>
  </channel>
</rss>

