<?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>i.MX Processors中的主题 Re: IMX8ULPIEC SAI interfase</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/IMX8ULPIEC-SAI-interfase/m-p/1983524#M230217</link>
    <description>&lt;P&gt;This is what I needed, thank you!&lt;/P&gt;</description>
    <pubDate>Tue, 29 Oct 2024 06:48:52 GMT</pubDate>
    <dc:creator>Sandroom</dc:creator>
    <dc:date>2024-10-29T06:48:52Z</dc:date>
    <item>
      <title>IMX8ULPIEC SAI interfase</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMX8ULPIEC-SAI-interfase/m-p/1978868#M229963</link>
      <description>&lt;P&gt;Good day to all.&lt;BR /&gt;I have a task of programming SAI interface for i.mx 8 under m-33 core. I figured out that SAI0 and SAI1 are suitable for me, but I can't figure out from the IO Muxing pins I need. Alternative function for I2S?&lt;BR /&gt;For example PTA1 witch Output7 function(I2S0_RX_FS)&amp;nbsp;&amp;nbsp;will work as FS for SAI0 with User Defined Protocol?&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2024 06:44:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMX8ULPIEC-SAI-interfase/m-p/1978868#M229963</guid>
      <dc:creator>Sandroom</dc:creator>
      <dc:date>2024-10-22T06:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: IMX8ULPIEC SAI interfase</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMX8ULPIEC-SAI-interfase/m-p/1983192#M230203</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/242343"&gt;@Sandroom&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope you are doing very well.&lt;/P&gt;
&lt;P&gt;Please refer to the SDK of the i.MX8ULP. You can download it from MCUXpresso SDK.&lt;/P&gt;
&lt;P&gt;Check the SAI examples under&amp;nbsp;&lt;SPAN&gt;SDK_2_16_000_EVK-MIMX8ULP/boards/evkmimx8ulp/driver_examples/sai/interrupt_transfer.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;There is a File called pin_mux.c.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;There are defined the mux odtions for the pads including PTA1.&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;void BOARD_InitPins(void) {                                /*!&amp;lt; Function assigned for the core: Cortex-M33[cm33] */
    IOMUXC_SetPinMux(IOMUXC_PTA0_I2S0_RX_BCLK, 0U);
    IOMUXC_SetPinConfig(IOMUXC_PTA0_I2S0_RX_BCLK,
                        IOMUXC_PCR_DSE_MASK);
    IOMUXC_SetPinMux(IOMUXC_PTA1_I2S0_RX_FS, 0U);
    IOMUXC_SetPinConfig(IOMUXC_PTA1_I2S0_RX_FS,
                        IOMUXC_PCR_DSE_MASK);
    IOMUXC_SetPinMux(IOMUXC_PTA10_LPUART1_TX, 0U);
    IOMUXC_SetPinConfig(IOMUXC_PTA10_LPUART1_TX,
                        IOMUXC_PCR_PE_MASK |
                        IOMUXC_PCR_PS_MASK);
    IOMUXC_SetPinMux(IOMUXC_PTA11_LPUART1_RX, 0U);
    IOMUXC_SetPinConfig(IOMUXC_PTA11_LPUART1_RX,
                        IOMUXC_PCR_PE_MASK |
                        IOMUXC_PCR_PS_MASK);
    IOMUXC_SetPinMux(IOMUXC_PTA2_I2S0_RXD0, 0U);
    IOMUXC_SetPinMux(IOMUXC_PTA4_I2S0_MCLK, 0U);
    IOMUXC_SetPinConfig(IOMUXC_PTA4_I2S0_MCLK,
                        IOMUXC_PCR_OBE_MASK |
                        IOMUXC_PCR_DSE_MASK);
    IOMUXC_SetPinMux(IOMUXC_PTA7_I2S0_TXD0, 0U);
    IOMUXC_SetPinConfig(IOMUXC_PTA7_I2S0_TXD0,
                        IOMUXC_PCR_DSE_MASK);
    IOMUXC_SetPinMux(IOMUXC_PTA8_PTA8, 0U);
    IOMUXC_SetPinConfig(IOMUXC_PTA8_PTA8,
                        IOMUXC_PCR_OBE_MASK);
    IOMUXC_SetPinMux(IOMUXC_PTA9_PTA9, 0U);
    IOMUXC_SetPinConfig(IOMUXC_PTA9_PTA9,
                        IOMUXC_PCR_OBE_MASK);
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Salas.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2024 19:20:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMX8ULPIEC-SAI-interfase/m-p/1983192#M230203</guid>
      <dc:creator>Manuel_Salas</dc:creator>
      <dc:date>2024-10-28T19:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: IMX8ULPIEC SAI interfase</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMX8ULPIEC-SAI-interfase/m-p/1983524#M230217</link>
      <description>&lt;P&gt;This is what I needed, thank you!&lt;/P&gt;</description>
      <pubDate>Tue, 29 Oct 2024 06:48:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMX8ULPIEC-SAI-interfase/m-p/1983524#M230217</guid>
      <dc:creator>Sandroom</dc:creator>
      <dc:date>2024-10-29T06:48:52Z</dc:date>
    </item>
  </channel>
</rss>

