<?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: Writing Interrupt Service Routines For MC56F84789 in Digital Signal Controllers</title>
    <link>https://community.nxp.com/t5/Digital-Signal-Controllers/Writing-Interrupt-Service-Routines-For-MC56F84789/m-p/412875#M458</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Processor Expert tool is intuitive.&lt;/P&gt;&lt;P&gt;You add components.&lt;/P&gt;&lt;P&gt;Components have methods, properties, and events.&lt;/P&gt;&lt;P&gt;Events are the interrupts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The interrupt handlers are already written for you.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;You just write your code where the system indicates it should be inserted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can make a project to blink an LED every 100mS, for example, by just a few clicks and drags.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Sep 2015 20:07:16 GMT</pubDate>
    <dc:creator>johnlwinters</dc:creator>
    <dc:date>2015-09-25T20:07:16Z</dc:date>
    <item>
      <title>Writing Interrupt Service Routines For MC56F84789</title>
      <link>https://community.nxp.com/t5/Digital-Signal-Controllers/Writing-Interrupt-Service-Routines-For-MC56F84789/m-p/412874#M457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Previously I have worked with an 8-bit MCU (MC9S08QE128) where it seems very simple to implement ISRs.&lt;/P&gt;&lt;P&gt;You would define a function like this, where 22 is the interrupt vector number:&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; interrupt 22 void intSW1(void)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (...)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a similar way to do this for DSCs?&lt;/P&gt;&lt;P&gt;When looking at the DSC (MC56F84789) the only documentation I can find refers to tools like "Processor Expert" or a "Quick Start Tool".&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Do I really need to learn how to use a GUI tool in order to write an ISR?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2015 18:11:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Digital-Signal-Controllers/Writing-Interrupt-Service-Routines-For-MC56F84789/m-p/412874#M457</guid>
      <dc:creator>marcos1</dc:creator>
      <dc:date>2015-09-25T18:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: Writing Interrupt Service Routines For MC56F84789</title>
      <link>https://community.nxp.com/t5/Digital-Signal-Controllers/Writing-Interrupt-Service-Routines-For-MC56F84789/m-p/412875#M458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Processor Expert tool is intuitive.&lt;/P&gt;&lt;P&gt;You add components.&lt;/P&gt;&lt;P&gt;Components have methods, properties, and events.&lt;/P&gt;&lt;P&gt;Events are the interrupts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The interrupt handlers are already written for you.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;You just write your code where the system indicates it should be inserted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can make a project to blink an LED every 100mS, for example, by just a few clicks and drags.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Sep 2015 20:07:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Digital-Signal-Controllers/Writing-Interrupt-Service-Routines-For-MC56F84789/m-p/412875#M458</guid>
      <dc:creator>johnlwinters</dc:creator>
      <dc:date>2015-09-25T20:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Writing Interrupt Service Routines For MC56F84789</title>
      <link>https://community.nxp.com/t5/Digital-Signal-Controllers/Writing-Interrupt-Service-Routines-For-MC56F84789/m-p/412876#M459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just to make sure, you are saying the method of using the keyword "interrupt" before a function cannot be used, but I have to use the Processor Expert tool?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as intuitive goes, I'm not so sure.&lt;/P&gt;&lt;P&gt;I have created the project without Processor Expert and now all I can do is "Show Views" in the "Processor Expert" menu.&amp;nbsp; Clicking on anything in the components library shown has no effect.&lt;/P&gt;&lt;P&gt;I'll probably have to read about it first.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2015 13:46:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Digital-Signal-Controllers/Writing-Interrupt-Service-Routines-For-MC56F84789/m-p/412876#M459</guid>
      <dc:creator>marcos1</dc:creator>
      <dc:date>2015-09-28T13:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: Writing Interrupt Service Routines For MC56F84789</title>
      <link>https://community.nxp.com/t5/Digital-Signal-Controllers/Writing-Interrupt-Service-Routines-For-MC56F84789/m-p/412877#M460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Processor Expert generates code you can read.&lt;/P&gt;&lt;P&gt;You can use this code as example.&lt;/P&gt;&lt;P&gt;The PE project I generated was just a timer interrupt.&lt;/P&gt;&lt;P&gt;You can unzip and import this project into CW10.6, or just look at the files.&lt;/P&gt;&lt;P&gt;It shows you how to write ISR routines.&lt;/P&gt;&lt;P&gt;Look in the generated code directory for the code that PE generates to support the timer interrupt.&lt;/P&gt;&lt;P&gt;Please post an emai address and I will mail it to you, if you are interested.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2015 16:38:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Digital-Signal-Controllers/Writing-Interrupt-Service-Routines-For-MC56F84789/m-p/412877#M460</guid>
      <dc:creator>johnlwinters</dc:creator>
      <dc:date>2015-09-28T16:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: Writing Interrupt Service Routines For MC56F84789</title>
      <link>https://community.nxp.com/t5/Digital-Signal-Controllers/Writing-Interrupt-Service-Routines-For-MC56F84789/m-p/412878#M461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The eval board came with examples using Processor Expert on the DVD.&lt;/P&gt;&lt;P&gt;I will take a look at those for now.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Sep 2015 18:14:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Digital-Signal-Controllers/Writing-Interrupt-Service-Routines-For-MC56F84789/m-p/412878#M461</guid>
      <dc:creator>marcos1</dc:creator>
      <dc:date>2015-09-28T18:14:37Z</dc:date>
    </item>
    <item>
      <title>Re: Writing Interrupt Service Routines For MC56F84789</title>
      <link>https://community.nxp.com/t5/Digital-Signal-Controllers/Writing-Interrupt-Service-Routines-For-MC56F84789/m-p/412879#M462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you send me the proyect you are talking about, to see the use of ISR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my email is: &lt;A href="mailto:humberto.ornelas@pouncecorp.com"&gt;humberto.ornelas@pouncecorp.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Nov 2017 19:02:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Digital-Signal-Controllers/Writing-Interrupt-Service-Routines-For-MC56F84789/m-p/412879#M462</guid>
      <dc:creator>HumbertoOrnelas</dc:creator>
      <dc:date>2017-11-14T19:02:48Z</dc:date>
    </item>
  </channel>
</rss>

