<?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: How to start SDIO interrupts?</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-start-SDIO-interrupts/m-p/1286019#M45252</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;SPAN&gt;PIHL,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;How about refer to how to config interrupt sdcard_interrupt project, especially the function of&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;SDIF_TransferCreateHandle()&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Alice_Yang_0-1622625604706.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/146085iEE403240B44DF075/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Alice_Yang_0-1622625604706.png" alt="Alice_Yang_0-1622625604706.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 02 Jun 2021 09:22:57 GMT</pubDate>
    <dc:creator>Alice_Yang</dc:creator>
    <dc:date>2021-06-02T09:22:57Z</dc:date>
    <item>
      <title>How to start SDIO interrupts?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-start-SDIO-interrupts/m-p/1283921#M45201</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I create my own SDIO project for LPC54607.&lt;/P&gt;&lt;P&gt;I use 4-bit mode of communication and I have no issues reading card Capability on so on. The standard commands and data sending works fine.&lt;/P&gt;&lt;P&gt;I would like to use interrupts in my project, being still in 4-bit mode. As know from SDIO spec, the interrupts should appear on Data1 line (voltage being pulled down by SDIO card).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My problem is that I can not get my program to execute&amp;nbsp;SDIO_IRQHandler function.&lt;/P&gt;&lt;P&gt;I have a part of code for interrupt registration:&lt;/P&gt;&lt;P&gt;NVIC_SetPriority(SDIO_IRQn, 5U);&lt;BR /&gt;NVIC_EnableIRQ(SDIO_IRQn);&lt;BR /&gt;SDIO_EnableIOInterrupt(card, kSDIO_FunctionNum1, enable);&lt;BR /&gt;SDIO_EnableIOInterrupt(card, kSDIO_FunctionNum2, enable);&lt;BR /&gt;SDIO_SetIOIRQHandler(card, kSDIO_FunctionNum1, handler);&lt;BR /&gt;SDIO_SetIOIRQHandler(card, kSDIO_FunctionNum2, handler);&lt;/P&gt;&lt;P&gt;Is there anything else I should run to start handler function after interrupt? Maybe something with GPIO interrupts?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Piotr&lt;/P&gt;</description>
      <pubDate>Fri, 28 May 2021 06:37:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-start-SDIO-interrupts/m-p/1283921#M45201</guid>
      <dc:creator>PIHL</dc:creator>
      <dc:date>2021-05-28T06:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to start SDIO interrupts?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-start-SDIO-interrupts/m-p/1284659#M45236</link>
      <description>&lt;P&gt;Hello PIHL,&lt;/P&gt;
&lt;P&gt;How about refer to the interrupt code under SDK for LPCxpresso54608&amp;nbsp; SDIO demo,&lt;/P&gt;
&lt;P&gt;download from:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://mcuxpresso.nxp.com/en/select" target="_blank"&gt;https://mcuxpresso.nxp.com/en/select&lt;/A&gt;&amp;nbsp;&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;</description>
      <pubDate>Mon, 31 May 2021 09:01:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-start-SDIO-interrupts/m-p/1284659#M45236</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2021-05-31T09:01:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to start SDIO interrupts?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-start-SDIO-interrupts/m-p/1284739#M45237</link>
      <description>&lt;P&gt;Hello Alice,&lt;/P&gt;&lt;P&gt;thanks for the response.&lt;/P&gt;&lt;P&gt;I looked into examples for LPC 546xx MCUs and I didn't find the answer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;In "sdcard_interrupt" and&amp;nbsp;"mmccard_interrupt" during transmission there is function&amp;nbsp;SDMMC_OSAEventWait used to capture events. Are those events somehow connected with the SDIO interrupts? Should I expect something similar with SDIO?&lt;/P&gt;&lt;P&gt;In the example called "sdio" I can not find any use of interrupts in communication.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Piotr&lt;/P&gt;</description>
      <pubDate>Mon, 31 May 2021 10:47:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-start-SDIO-interrupts/m-p/1284739#M45237</guid>
      <dc:creator>PIHL</dc:creator>
      <dc:date>2021-05-31T10:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to start SDIO interrupts?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-start-SDIO-interrupts/m-p/1286019#M45252</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;SPAN&gt;PIHL,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;How about refer to how to config interrupt sdcard_interrupt project, especially the function of&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;SDIF_TransferCreateHandle()&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Alice_Yang_0-1622625604706.png" style="width: 400px;"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/146085iEE403240B44DF075/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Alice_Yang_0-1622625604706.png" alt="Alice_Yang_0-1622625604706.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 09:22:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/How-to-start-SDIO-interrupts/m-p/1286019#M45252</guid>
      <dc:creator>Alice_Yang</dc:creator>
      <dc:date>2021-06-02T09:22:57Z</dc:date>
    </item>
  </channel>
</rss>

