<?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: Interrupt Service Routines not using Processor Expert in CodeWarrior for MCU</title>
    <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Interrupt-Service-Routines-not-using-Processor-Expert/m-p/745119#M14432</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jennie,&lt;BR /&gt;Thanks very much for your reply. I have been coding in Assembler for 25 years. Since going to CodeWarrior and C a few years ago I have been spoilt with PE. LOL. Thanks very much for your advice and the link.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Jun 2018 01:26:17 GMT</pubDate>
    <dc:creator>robguyatt</dc:creator>
    <dc:date>2018-06-06T01:26:17Z</dc:date>
    <item>
      <title>Interrupt Service Routines not using Processor Expert</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Interrupt-Service-Routines-not-using-Processor-Expert/m-p/745117#M14430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm using CW 10.6. I'm developing an application using S08SU16. It's not supported by Processor Expert so I have to scratch build interrupt&amp;nbsp;service routines by hand. Can anyone point me to articles, tutorials, videos etc.&amp;nbsp;to get me started?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Rob&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 02 Jun 2018 06:28:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Interrupt-Service-Routines-not-using-Processor-Expert/m-p/745117#M14430</guid>
      <dc:creator>robguyatt</dc:creator>
      <dc:date>2018-06-02T06:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: Interrupt Service Routines not using Processor Expert</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Interrupt-Service-Routines-not-using-Processor-Expert/m-p/745118#M14431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;You are right processor expert does't support S08SU16.&lt;/P&gt;&lt;P&gt;To handle interrupt, use below syntax:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;interrupt &amp;lt;vector_number&amp;gt; &amp;lt;function_name&amp;gt;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;{&lt;BR /&gt;…/*code*/&lt;BR /&gt;}&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN style="font-size: 12.0pt;"&gt;Here, Vector number can be found in chip user manual vector locations table.&lt;/SPAN&gt;Count from bottom of the table for the “vector number”. &lt;SPAN style="font-size: 11.5pt;"&gt;the reset vector is vector number 0 (located at address 0), vector number 1 is located just after the vector 0 (at address 0x2) and so on. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;ie Reset = 0 (address is &lt;SPAN style="font-size: 9.0pt;"&gt;$FFFE&lt;/SPAN&gt;), &lt;SPAN style="font-size: 9.0pt;"&gt;Clock monitor reset&lt;/SPAN&gt; = 1,&amp;nbsp; &lt;SPAN style="font-size: 9.0pt;"&gt;COP watchdog reset&lt;/SPAN&gt; = 2 , ...... You can see “Vector Priority” in this table. When the two interrupt occurs, the system will accept the higher priority interrupt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The attached technical note is about how to implement the interrupt routine for 8/16bit MCU.&lt;/P&gt;&lt;P&gt;I think it is simple and readable. Hope it can help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Have a great day,&lt;BR /&gt;Jennie Zhang&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Jun 2018 06:59:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Interrupt-Service-Routines-not-using-Processor-Expert/m-p/745118#M14431</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2018-06-04T06:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: Interrupt Service Routines not using Processor Expert</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Interrupt-Service-Routines-not-using-Processor-Expert/m-p/745119#M14432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jennie,&lt;BR /&gt;Thanks very much for your reply. I have been coding in Assembler for 25 years. Since going to CodeWarrior and C a few years ago I have been spoilt with PE. LOL. Thanks very much for your advice and the link.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2018 01:26:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Interrupt-Service-Routines-not-using-Processor-Expert/m-p/745119#M14432</guid>
      <dc:creator>robguyatt</dc:creator>
      <dc:date>2018-06-06T01:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: Interrupt Service Routines not using Processor Expert</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Interrupt-Service-Routines-not-using-Processor-Expert/m-p/745120#M14433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are welcome Rob.&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Jennie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jun 2018 02:36:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Interrupt-Service-Routines-not-using-Processor-Expert/m-p/745120#M14433</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2018-06-06T02:36:03Z</dc:date>
    </item>
  </channel>
</rss>

