<?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>Kinetis MicrocontrollersのトピックRe: I2S questions &amp; review?</title>
    <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/I2S-questions-review/m-p/150523#M201</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Carlos,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I was searching in the community to find a solution for my problem, I saw that you're probably familiar with codec.&lt;/P&gt;&lt;P&gt;actually I'm using wolfson WM8731 Audio CODEC and I want to connect it to K22F through I2C.&lt;/P&gt;&lt;P&gt;I initialized I2C by processor expert and I want to send data to CODEC. I'm first sending the address register but there's no acknowledge from CODEC. as I checked, the address must be 0x34 for this CODEC. Can you help me with this issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Jul 2015 09:29:11 GMT</pubDate>
    <dc:creator>negarerfanian</dc:creator>
    <dc:date>2015-07-23T09:29:11Z</dc:date>
    <item>
      <title>I2S questions &amp; review?</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/I2S-questions-review/m-p/150520#M198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Hi, I'm trying to interconnect a MAXIM codec together with the K40 mcu. I'm a bit in doubt about the connections and was hoping you could help me out in my first steps with the K40 The codec has shared BCLK and LRCLK for the RX and TX line but on the K40 they are seperated interfaces - how do i make that work?? The codec wants 12.288MHz clock input to achieve maximum performance but if I attach a 12.288MHz to the crystal port on the K40 in order for it's I2S pheripheral to output that as a MCLK it seems that I cannot use the USB pheripheral as that requires a 4MHz clock ?? Thanks !&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2012 02:11:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/I2S-questions-review/m-p/150520#M198</guid>
      <dc:creator>Madsen</dc:creator>
      <dc:date>2012-04-02T02:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: I2S questions &amp; review?</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/I2S-questions-review/m-p/150521#M199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The 'reasonable' way to&amp;nbsp;have CoDecs run at their 'odd' rates is to let the Kinetis I2S interface operate fully as a slave, and&amp;nbsp;make the CoDec generate the frame &amp;amp; bit clocks.&amp;nbsp; While the Kinetis 'claims' to be able to divide-down an MCLK, it does so by 'dropping' CPU clocks as necessary, meaning MASSIVE jitter, so I don't recommend going that way--get a pure MCLK somewhere else.&amp;nbsp; To get the data to/from memory, you might DMA&amp;nbsp; -- see &lt;A href="https://community.freescale.com/message/82190#82190" title="https://community.freescale.com/message/82190#82190"&gt;https://community.freescale.com/message/82190#82190&lt;/A&gt;&amp;nbsp; It is a setup to stream multiple audio channels thru individual ping/pong buffers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;USB requires a 48MHz clock, and you can get that either from the dedicated USB clock pin, OR run the CPU at either 48 or 96MHz.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Apr 2012 19:44:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/I2S-questions-review/m-p/150521#M199</guid>
      <dc:creator>egoodii</dc:creator>
      <dc:date>2012-04-08T19:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: I2S questions &amp; review?</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/I2S-questions-review/m-p/150522#M200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Earl has a good point. Using the Kinetis to generate the mater clocks will add a lot of jitter on your audio and this impacts the audio quality.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you're targeting an USB application with audio, a 2 oscillator approach will be the best. One for the MCU input to generate USB clock based on PLL (8 or 4 Mhz work pretty well) and the 12.288Mhz for the MCLK on the I2S.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The SAI module on Kinetis is capable to use just one BCLK and one LRCLK to feed Tx and RX. This is called synchronous mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can take a look to the TWR-AUDIO-SGTL on for an example on how to connect the clocks. Here is the link to the schematics:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://tinyurl.com/9hg7vra"&gt;http://tinyurl.com/9hg7vra&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case, the codec is the master, providing MCLK, BCLK and LRCLK. Here you'll find a sample code running on a TWR-K60D100M that might help you:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.nxp.com/thread/81904"&gt;https://community.freescale.com/thread/81904&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You also can feed MCLK to Kinetis and use the internal dividers to generate the I2S clocks, in this case, Kinetis will be the master and you avoid the excessive jitter becuase a dedicated oscillator is used as reference.&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #000000; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #000000; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2012 20:18:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/I2S-questions-review/m-p/150522#M200</guid>
      <dc:creator>carlos_neri</dc:creator>
      <dc:date>2012-10-11T20:18:15Z</dc:date>
    </item>
    <item>
      <title>Re: I2S questions &amp; review?</title>
      <link>https://community.nxp.com/t5/Kinetis-Microcontrollers/I2S-questions-review/m-p/150523#M201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Carlos,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I was searching in the community to find a solution for my problem, I saw that you're probably familiar with codec.&lt;/P&gt;&lt;P&gt;actually I'm using wolfson WM8731 Audio CODEC and I want to connect it to K22F through I2C.&lt;/P&gt;&lt;P&gt;I initialized I2C by processor expert and I want to send data to CODEC. I'm first sending the address register but there's no acknowledge from CODEC. as I checked, the address must be 0x34 for this CODEC. Can you help me with this issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 09:29:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Kinetis-Microcontrollers/I2S-questions-review/m-p/150523#M201</guid>
      <dc:creator>negarerfanian</dc:creator>
      <dc:date>2015-07-23T09:29:11Z</dc:date>
    </item>
  </channel>
</rss>

