<?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>S32KのトピックS32-UART-INTERRUPT</title>
    <link>https://community.nxp.com/t5/S32K/S32-UART-INTERRUPT/m-p/730587#M1818</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I want to open uart interrupt.I set the following register, or I can't access it（void UART1_IRQHandler(void))&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_3.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/11107i266A5D23B1D4149D/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_3.png" alt="pastedImage_3.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_4.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/11279i74145EAB39F589B7/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_4.png" alt="pastedImage_4.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_5.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/11282i052DE662F3EE3081/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_5.png" alt="pastedImage_5.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;please can you help&amp;nbsp;&lt;SPAN&gt;set the register?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Oct 2017 07:49:05 GMT</pubDate>
    <dc:creator>wangfei11</dc:creator>
    <dc:date>2017-10-30T07:49:05Z</dc:date>
    <item>
      <title>S32-UART-INTERRUPT</title>
      <link>https://community.nxp.com/t5/S32K/S32-UART-INTERRUPT/m-p/730587#M1818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I want to open uart interrupt.I set the following register, or I can't access it（void UART1_IRQHandler(void))&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_3.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/11107i266A5D23B1D4149D/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_3.png" alt="pastedImage_3.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_4.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/11279i74145EAB39F589B7/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_4.png" alt="pastedImage_4.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_5.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/11282i052DE662F3EE3081/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_5.png" alt="pastedImage_5.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;please can you help&amp;nbsp;&lt;SPAN&gt;set the register?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2017 07:49:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32-UART-INTERRUPT/m-p/730587#M1818</guid>
      <dc:creator>wangfei11</dc:creator>
      <dc:date>2017-10-30T07:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: S32-UART-INTERRUPT</title>
      <link>https://community.nxp.com/t5/S32K/S32-UART-INTERRUPT/m-p/730588#M1819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The IP register is not set correctly, the priority number must be written to the 7-4 bits of the register.&lt;/P&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;S32_NVIC-&amp;gt;IP[33] = 0x30;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Priority level 3&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;See Chapter 7.2.1 of the RM.&lt;/P&gt;&lt;P&gt;But this should not cause any problems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you enable interrupts in LPUART CTRL register?&lt;/P&gt;&lt;P&gt;Is the name of the interrupt handler function correct?&lt;/P&gt;&lt;P&gt;As per S32K144.h, it is&lt;/P&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;void LPUART1_RxTx_IRQHandler(void)&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2017 14:53:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32-UART-INTERRUPT/m-p/730588#M1819</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2017-10-30T14:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: S32-UART-INTERRUPT</title>
      <link>https://community.nxp.com/t5/S32K/S32-UART-INTERRUPT/m-p/730589#M1820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN&gt;Hi &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks.I named the wrong interrupt function name,but I only have to Sett Transmit Interrupt Enable to enter the interrupt.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/11611iCAA070E82DFAAECC/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_2.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/11651i9ADB8533D1CB1A90/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_2.png" alt="pastedImage_2.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Below is my register setting operation, I hope you can give directions.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_3.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/11690iD295469CA43F453C/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_3.png" alt="pastedImage_3.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Fei wang&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Oct 2017 03:08:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32-UART-INTERRUPT/m-p/730589#M1820</guid>
      <dc:creator>wangfei11</dc:creator>
      <dc:date>2017-10-31T03:08:58Z</dc:date>
    </item>
  </channel>
</rss>

