<?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 Where does Unhandled Interrupt error comes from ? in MQX Software Solutions</title>
    <link>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152405#M509</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the failure that is destroying my application:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*** UNHANDLED INTERRUPT ***&lt;BR /&gt;Vector #: 0 0x0&lt;BR /&gt;Offset&amp;nbsp; : 0 0x0&lt;BR /&gt;Task Id: 0x10002 Td_ptr 0x20001f78 Stack Frame: 0x2000149c&lt;BR /&gt;Interrupt_nesting level: 1&amp;nbsp;&amp;nbsp; PC: 0x00000000&amp;nbsp;&amp;nbsp;&amp;nbsp; SR:&amp;nbsp; 0x000e&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using an interrupt port in MCF52259&amp;nbsp; and when getting a lot(500 interrupts per second) of continous interrupts the program crashes. Changing hardware is the very last of my options (for example adding an 8 bit MCU to read this interrupts).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1.-Why is this happening?&lt;/P&gt;&lt;P&gt;2.-What should be the way to avoid this unhandled interrupt error? (Could Handling these interrupts outside MQX solve the problem???)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for you help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Nov 2009 09:13:54 GMT</pubDate>
    <dc:creator>MQXuser</dc:creator>
    <dc:date>2009-11-06T09:13:54Z</dc:date>
    <item>
      <title>Where does Unhandled Interrupt error comes from ?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152405#M509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the failure that is destroying my application:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*** UNHANDLED INTERRUPT ***&lt;BR /&gt;Vector #: 0 0x0&lt;BR /&gt;Offset&amp;nbsp; : 0 0x0&lt;BR /&gt;Task Id: 0x10002 Td_ptr 0x20001f78 Stack Frame: 0x2000149c&lt;BR /&gt;Interrupt_nesting level: 1&amp;nbsp;&amp;nbsp; PC: 0x00000000&amp;nbsp;&amp;nbsp;&amp;nbsp; SR:&amp;nbsp; 0x000e&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using an interrupt port in MCF52259&amp;nbsp; and when getting a lot(500 interrupts per second) of continous interrupts the program crashes. Changing hardware is the very last of my options (for example adding an 8 bit MCU to read this interrupts).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1.-Why is this happening?&lt;/P&gt;&lt;P&gt;2.-What should be the way to avoid this unhandled interrupt error? (Could Handling these interrupts outside MQX solve the problem???)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for you help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Nov 2009 09:13:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152405#M509</guid>
      <dc:creator>MQXuser</dc:creator>
      <dc:date>2009-11-06T09:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: Where does Unhandled Interrupt error comes from ?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152406#M510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi MQXUser,&lt;/P&gt;&lt;P&gt;Good rule of thumb is if doing more than 200 interrupts per second, to set the interrupt to be direct and not letting the RTOS handle it.&amp;nbsp; This save much overhead and time.&amp;nbsp; This method will pre-empt the RTOS so make certain your ISR handler is small-short-fast.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2009 22:57:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152406#M510</guid>
      <dc:creator>DavidS</dc:creator>
      <dc:date>2009-11-10T22:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: Where does Unhandled Interrupt error comes from ?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152407#M511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Eventually, I have the 200 interrupts per second, but this is not all the time. What about the Unhandled Interrupt?, Task Aware debugger shows me that the Unhandled Interrupt was presented in shell Task. Should I believe this this? Shell task has the lowest priority compared to my other 8 tasks.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does the extra overhead and extra time used to handle these interrupts cause the Unhandled Interrupt?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2009 23:23:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152407#M511</guid>
      <dc:creator>MQXuser</dc:creator>
      <dc:date>2009-11-10T23:23:23Z</dc:date>
    </item>
    <item>
      <title>Re: Where does Unhandled Interrupt error comes from ?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152408#M512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;To solve this problem, you need to identify which interrupt (or exception) is unhandled. Install&amp;nbsp; the unexpected_isr handler (&amp;nbsp;&amp;nbsp; _int_install_unexpected_isr();&lt;BR /&gt;) which will print the vector number of the unhandled interrupt.&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2009 23:34:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152408#M512</guid>
      <dc:creator>EAI</dc:creator>
      <dc:date>2009-11-10T23:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: Where does Unhandled Interrupt error comes from ?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152409#M513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have it already printed. This is the information it gives me:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*** UNHANDLED INTERRUPT ***&lt;BR /&gt;Vector #: 0 0x0&lt;BR /&gt;Offset&amp;nbsp; : 0 0x0&lt;BR /&gt;Task Id: 0x10002 Td_ptr 0x20001f78 Stack Frame: 0x2000149c&lt;BR /&gt;Interrupt_nesting level: 1&amp;nbsp;&amp;nbsp; PC: 0x00000000&amp;nbsp;&amp;nbsp;&amp;nbsp; SR:&amp;nbsp; 0x000e&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What does it tell me?&lt;/P&gt;&lt;P&gt;How does it help me to solve the problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Nov 2009 23:45:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152409#M513</guid>
      <dc:creator>MQXuser</dc:creator>
      <dc:date>2009-11-10T23:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: Where does Unhandled Interrupt error comes from ?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152410#M514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks to me like you are getting some memory corruption. Your PC and vector number are both zero - which do not make sense. If it really was some unhandled interrupt, the vector and pc would have sensible values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2009 00:00:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152410#M514</guid>
      <dc:creator>EAI</dc:creator>
      <dc:date>2009-11-11T00:00:49Z</dc:date>
    </item>
    <item>
      <title>Re: Where does Unhandled Interrupt error comes from ?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152411#M515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Can the memory be corrupted by the rate at which interrupts can be called in my application?&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2009 00:23:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152411#M515</guid>
      <dc:creator>MQXuser</dc:creator>
      <dc:date>2009-11-11T00:23:32Z</dc:date>
    </item>
    <item>
      <title>Re: Where does Unhandled Interrupt error comes from ?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152412#M516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay, now I am getting Unhandled interrupt error with PC and vector numbers. Most of the times unhandled interrupt comes from different tasks. Unhandled interrupt comes when many interrupts ocurr in a short period of time.&lt;/P&gt;&lt;P&gt;How could I avoid this error?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2009 07:35:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152412#M516</guid>
      <dc:creator>MQXuser</dc:creator>
      <dc:date>2009-11-26T07:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: Where does Unhandled Interrupt error comes from ?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152413#M517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I have a similar problem and I don`t understand it. How can I understand the problem.&lt;/P&gt;&lt;P&gt;I can read this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*** UNHANDLED INTERRUPT ***&lt;BR /&gt;Vector #: 0&amp;nbsp; 0x0&lt;BR /&gt;Offset&amp;nbsp; : 0&amp;nbsp; 0x0&lt;BR /&gt;Task Id: 0x10001 Td_ptr 0x20000e04 Stack Frame: 0x200008fc&lt;BR /&gt;Interrupt_nesting level: 2&amp;nbsp;&amp;nbsp; PC: 0x20007948&amp;nbsp;&amp;nbsp; SR: 0x003d&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you help me?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2010 17:22:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152413#M517</guid>
      <dc:creator>Rpalenci</dc:creator>
      <dc:date>2010-02-15T17:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: Where does Unhandled Interrupt error comes from ?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152414#M518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;Rpalenci wrote:&lt;BR /&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I have a similar problem and I don`t understand it. How can I understand the problem.&lt;/P&gt;&lt;P&gt;I can read this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*** UNHANDLED INTERRUPT ***&lt;BR /&gt;Vector #: 0&amp;nbsp; 0x0&lt;BR /&gt;Offset&amp;nbsp; : 0&amp;nbsp; 0x0&lt;BR /&gt;Task Id: 0x10001 Td_ptr 0x20000e04 Stack Frame: 0x200008fc&lt;BR /&gt;Interrupt_nesting level: 2&amp;nbsp;&amp;nbsp; PC: 0x20007948&amp;nbsp;&amp;nbsp; SR: 0x003d&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you help me?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also see similar problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any answers to this question?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jun 2010 00:57:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152414#M518</guid>
      <dc:creator>eGuy</dc:creator>
      <dc:date>2010-06-16T00:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: Where does Unhandled Interrupt error comes from ?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152415#M519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;eGuy wrote:&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;Rpalenci wrote:&lt;BR /&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; I have a similar problem and I don`t understand it. How can I understand the problem.&lt;/P&gt;&lt;P&gt;I can read this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*** UNHANDLED INTERRUPT ***&lt;BR /&gt;Vector #: 0&amp;nbsp; 0x0&lt;BR /&gt;Offset&amp;nbsp; : 0&amp;nbsp; 0x0&lt;BR /&gt;Task Id: 0x10001 Td_ptr 0x20000e04 Stack Frame: 0x200008fc&lt;BR /&gt;Interrupt_nesting level: 2&amp;nbsp;&amp;nbsp; PC: 0x20007948&amp;nbsp;&amp;nbsp; SR: 0x003d&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you help me?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;Best regards.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also see similar problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any answers to this question?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm also fighting this.&amp;nbsp; I just moved from CW 7.1.2 to 7.2.1.&amp;nbsp; I'm using MQX 3.3 and 52259.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I disable all my autostart tasks, including the startup task, MQX runs happily doing nothing.&amp;nbsp; If I enable my startup task to autostart I get the vector 0 offset 0 crash.&amp;nbsp; I've even replaced my startup task with&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;void Startup_Task(uint_32)&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; _int_install_unexpected_isr();&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for( ; ; ) {}&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and still get the same crash.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is MQX 3.3 and CW 7.2.1 known to be a bad mix?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jun 2010 06:20:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152415#M519</guid>
      <dc:creator>MarkA</dc:creator>
      <dc:date>2010-06-17T06:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: Where does Unhandled Interrupt error comes from ?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152416#M520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dear,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Firstly, tell to you that&amp;nbsp;I have used MQX 3.4 &amp;amp;&amp;amp; 3.5, only.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I am not sure if you can have some similar problem to me. My problem was prodruced using stack RTCS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; When I send a pcb fragment, I didn't wait for MQX free the pcb fragment for I send other pcb fragment.&lt;/P&gt;&lt;P&gt;Handled interrupt is porduced because I tried write in a structure&amp;nbsp;while the system is using yet.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Solve: I use a mutex in function callback where the system tell me it finished with the structure. Only, if the mutex is unlock I can come back to send..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I hope that It help to someone.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jun 2010 13:55:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152416#M520</guid>
      <dc:creator>Rpalenci</dc:creator>
      <dc:date>2010-06-17T13:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: Where does Unhandled Interrupt error comes from ?</title>
      <link>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152417#M521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My problem was solved, see here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.freescale.com/message/66897#66897" title="https://community.freescale.com/message/66897#66897"&gt;https://community.freescale.com/message/66897#66897&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jeff&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jun 2010 20:41:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/MQX-Software-Solutions/Where-does-Unhandled-Interrupt-error-comes-from/m-p/152417#M521</guid>
      <dc:creator>eGuy</dc:creator>
      <dc:date>2010-06-17T20:41:12Z</dc:date>
    </item>
  </channel>
</rss>

