<?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>topic Re: S32K144 multiple interrupt enable in S32K</title>
    <link>https://community.nxp.com/t5/S32K/S32K144-multiple-interrupt-enable/m-p/1000683#M5935</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&amp;nbsp;&lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/pradeep.aithal@in.bosch.com"&gt;pradeep.aithal@in.bosch.com&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;The NVIC_IRQs_Init() function&amp;nbsp;only clear the NVIC pending flags of the two interrupts and enables them, it seems to be correct, but there is no need to use the read-modify-write operation.&lt;/P&gt;&lt;P&gt;Is it possible that the application is in the LPIT&amp;nbsp;ISR the whole time?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because the priorities are not set correctly.&lt;/P&gt;&lt;P&gt;The number&amp;nbsp;must be written to the 4 MSB of the IP registers.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&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/98533iA384412F92D61AC7/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;So, your configuration sets the priorities of the two interrupts to 0 (highest).&lt;/P&gt;&lt;P&gt;If you expect the UART interrupt to preempt the LPIT interrupt, this won't work.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you share the project?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR, Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Dec 2019 14:15:48 GMT</pubDate>
    <dc:creator>danielmartynek</dc:creator>
    <dc:date>2019-12-20T14:15:48Z</dc:date>
    <item>
      <title>S32K144 multiple interrupt enable</title>
      <link>https://community.nxp.com/t5/S32K/S32K144-multiple-interrupt-enable/m-p/1000682#M5934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;I am trying to enable multiple interrupts one after the other, but only one interrupt which is enabled first is activated.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;Please find below the snippet of the code (in this case only LPIT0 is interrupt is generated)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #7f0055; font-size: 10.0pt; "&gt;void&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt; &lt;STRONG&gt;NVIC_IRQs_Init&lt;/STRONG&gt; (&lt;/SPAN&gt;&lt;STRONG style="color: #7f0055; font-size: 10.0pt; "&gt;void&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp; S32_NVIC-&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #0000c0;"&gt;ICPR&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;[1] = 1 &amp;lt;&amp;lt; (48 % 32);&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #3f7f5f;"&gt;/* IRQ48-LPIT0 ch0: &lt;SPAN style="text-decoration: underline;"&gt;clr&lt;/SPAN&gt; any pending IRQ*/&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp; S32_NVIC-&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #0000c0; background: silver;"&gt;ISER&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;[1] = 1 &amp;lt;&amp;lt; (48 % 32);&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #3f7f5f;"&gt;/* IRQ48-LPIT0 ch0: enable IRQ */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp; S32_NVIC-&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #0000c0;"&gt;IP&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;[48] = 0x3;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #3f7f5f;"&gt;/* IRQ48-LPIT0 ch0: priority 0 of 0-15*/&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp; S32_NVIC-&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #0000c0;"&gt;ICPR&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;[1] |= (1 &amp;lt;&amp;lt; (33 % 32));&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #3f7f5f;"&gt;/* IRQ33-LPUART ch1: &lt;SPAN style="text-decoration: underline;"&gt;clr&lt;/SPAN&gt; any pending IRQ*/&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp; S32_NVIC-&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #0000c0; background: silver;"&gt;ISER&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;[1] |= (1 &amp;lt;&amp;lt; (33 % 32));&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #3f7f5f;"&gt;/* IRQ33-LPUART ch1: enable IRQ */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp; S32_NVIC-&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #0000c0;"&gt;IP&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;[33] = 0x1;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #3f7f5f;"&gt;/* IRQ33-LPUART ch1: priority 2 of 0-15*/&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #7f0055; font-size: 10.0pt; "&gt;void&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt; &lt;STRONG&gt;LPIT0_Ch0_IRQHandler&lt;/STRONG&gt; (&lt;/SPAN&gt;&lt;STRONG style="color: #7f0055; font-size: 10.0pt; "&gt;void&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp; LPIT0-&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #0000c0;"&gt;MSR&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt; |= LPIT_MSR_TIF0_MASK; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #3f7f5f;"&gt;/* Clear LPIT0 timer flag 0 */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #3f7f5f;"&gt;/* Perform read-after-write to ensure flag clears before ISR exit */&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #7f0055; font-size: 10.0pt; "&gt;void&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt; &lt;STRONG&gt;LPUART1_RxTx_IRQHandler&lt;/STRONG&gt; (&lt;/SPAN&gt;&lt;STRONG style="color: #7f0055; font-size: 10.0pt; "&gt;void&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #7f0055; font-size: 10.0pt; "&gt;char&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt; receive;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #7f0055; font-size: 10.0pt; "&gt;if&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;(LPUART1-&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #0000c0;"&gt;STAT&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt; &amp;amp; LPUART_STAT_RDRF_MASK)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; receive= LPUART1-&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #0000c0;"&gt;DATA&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #3f7f5f;"&gt;/* Read received data*/&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; } &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #7f0055; font-size: 10.0pt; "&gt;while&lt;/STRONG&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;((LPUART1-&amp;gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: #0000c0;"&gt;STAT&lt;/SPAN&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt; &amp;amp; LPUART_STAT_TDRE_MASK)&amp;gt;&amp;gt;LPUART_STAT_TDRE_SHIFT==0);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;If i initialize UART interrupt only, then UART interrupt will be activated.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10.0pt; color: black;"&gt;PN: Designed with the help of S32K cookbook &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Dec 2019 06:35:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K144-multiple-interrupt-enable/m-p/1000682#M5934</guid>
      <dc:creator>PradeepAithal</dc:creator>
      <dc:date>2019-12-19T06:35:05Z</dc:date>
    </item>
    <item>
      <title>Re: S32K144 multiple interrupt enable</title>
      <link>https://community.nxp.com/t5/S32K/S32K144-multiple-interrupt-enable/m-p/1000683#M5935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&amp;nbsp;&lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/pradeep.aithal@in.bosch.com"&gt;pradeep.aithal@in.bosch.com&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;The NVIC_IRQs_Init() function&amp;nbsp;only clear the NVIC pending flags of the two interrupts and enables them, it seems to be correct, but there is no need to use the read-modify-write operation.&lt;/P&gt;&lt;P&gt;Is it possible that the application is in the LPIT&amp;nbsp;ISR the whole time?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because the priorities are not set correctly.&lt;/P&gt;&lt;P&gt;The number&amp;nbsp;must be written to the 4 MSB of the IP registers.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&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/98533iA384412F92D61AC7/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;So, your configuration sets the priorities of the two interrupts to 0 (highest).&lt;/P&gt;&lt;P&gt;If you expect the UART interrupt to preempt the LPIT interrupt, this won't work.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you share the project?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR, Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Dec 2019 14:15:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K144-multiple-interrupt-enable/m-p/1000683#M5935</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2019-12-20T14:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: S32K144 multiple interrupt enable</title>
      <link>https://community.nxp.com/t5/S32K/S32K144-multiple-interrupt-enable/m-p/1000684#M5936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your support.&lt;/P&gt;&lt;P&gt;Please find attached&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pradeep Aithal&lt;/P&gt;&lt;P&gt;RBEI/EMS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tel. +91 80 6136-3754&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Dec 2019 08:30:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K144-multiple-interrupt-enable/m-p/1000684#M5936</guid>
      <dc:creator>PradeepAithal</dc:creator>
      <dc:date>2019-12-26T08:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: S32K144 multiple interrupt enable</title>
      <link>https://community.nxp.com/t5/S32K/S32K144-multiple-interrupt-enable/m-p/1000685#M5937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the answer Daniel.&lt;/P&gt;&lt;P&gt;That wasn't also clear to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Referring to the Handbook :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;FSL_NVIC-&amp;gt;IP[48] =0x0A; /* IRQ48-LPIT0 ch0: priority 10 of 0-15*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;==&amp;gt; The priority level actually here is&amp;nbsp;2 not 10.&lt;/P&gt;&lt;P&gt;Is mu understanding correct ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;nicolas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Dec 2019 15:59:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K144-multiple-interrupt-enable/m-p/1000685#M5937</guid>
      <dc:creator>chicheportichen</dc:creator>
      <dc:date>2019-12-27T15:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: S32K144 multiple interrupt enable</title>
      <link>https://community.nxp.com/t5/S32K/S32K144-multiple-interrupt-enable/m-p/1000686#M5938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear&amp;nbsp;Pradeep Aithal,&lt;/P&gt;&lt;P&gt;I have just tested the example, the NVIC module is set correctly except for the IP priority registers.&lt;/P&gt;&lt;P&gt;I understand you want to trigger the LPUART1 receive interrupt but it is not enabled in the LPUART1 module:&lt;/P&gt;&lt;P&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/100344i8CDF13D4FBB6150D/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR, Daniel&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Dec 2019 10:53:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K144-multiple-interrupt-enable/m-p/1000686#M5938</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2019-12-31T10:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: S32K144 multiple interrupt enable</title>
      <link>https://community.nxp.com/t5/S32K/S32K144-multiple-interrupt-enable/m-p/1000687#M5939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Nicolas.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The priority number would be 0 in this case.&lt;/P&gt;&lt;P&gt;If you want to set priority number 2, it would be:&lt;/P&gt;&lt;P&gt;S32_NVIC-&amp;gt;IP[48] = 0x20; (0b&lt;SPAN style="text-decoration: underline;"&gt;0010&lt;/SPAN&gt;0000)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR, Daniel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Dec 2019 10:57:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/S32K/S32K144-multiple-interrupt-enable/m-p/1000687#M5939</guid>
      <dc:creator>danielmartynek</dc:creator>
      <dc:date>2019-12-31T10:57:45Z</dc:date>
    </item>
  </channel>
</rss>

