<?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: how to program multiple interrupts like oc5ISR and rtiISR? in Classic/Legacy CodeWarrior</title>
    <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/how-to-program-multiple-interrupts-like-oc5ISR-and-rtiISR/m-p/1315029#M7802</link>
    <description>&lt;P&gt;I am having an issue trying to get both the buzzer and 7 segment display to work in the same code.&lt;/P&gt;&lt;P&gt;the Buzzer is using oc5ISR&lt;A href="https://njmc-direct.info/" target="_self"&gt;:&lt;/A&gt;&lt;/P&gt;&lt;P&gt;extern void near oc5ISR(void);&lt;BR /&gt;#pragma CODE_SEG __NEAR_SEG NON_BANKED&lt;BR /&gt;#pragma CODE_SEG DEFAULT // Change code section to DEFAULT.&lt;BR /&gt;typedef void (*near tIsrFunc)(void);&lt;BR /&gt;const tIsrFunc _vect[] @0xFFE4 = {&lt;BR /&gt;oc5ISR&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;while the 7 segment is using rtiISR:&lt;/P&gt;&lt;P&gt;extern void near rtiISR(void);&lt;BR /&gt;#pragma CODE_SEG __NEAR_SEG NON_BANKED&lt;BR /&gt;#pragma CODE_SEG __DEFAULT&lt;BR /&gt;typedef void (*near tIsrFunc)(void);&lt;BR /&gt;const tIsrFunc _vect[] @0xFFF0 = {&lt;BR /&gt;rtiISR&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Its throwing an error when tIsrFunc_vect[] is redefined on the rtiISR. How do i go about fixing this issue?&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;I was looking for same exact thing ..!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if you could find please tell me ..&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 29 Jul 2021 05:59:26 GMT</pubDate>
    <dc:creator>Cyndrila</dc:creator>
    <dc:date>2021-07-29T05:59:26Z</dc:date>
    <item>
      <title>how to program multiple interrupts like oc5ISR and rtiISR?</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/how-to-program-multiple-interrupts-like-oc5ISR-and-rtiISR/m-p/1271117#M7787</link>
      <description>&lt;P&gt;I am having an issue trying to get both the buzzer and 7 segment display to work in the same code.&lt;/P&gt;&lt;P&gt;the Buzzer is using oc5ISR:&lt;/P&gt;&lt;P&gt;extern void near oc5ISR(void);&lt;BR /&gt;#pragma CODE_SEG __NEAR_SEG NON_BANKED&lt;BR /&gt;#pragma CODE_SEG DEFAULT // Change code section to DEFAULT.&lt;BR /&gt;typedef void (*near tIsrFunc)(void);&lt;BR /&gt;const tIsrFunc _vect[] @0xFFE4 = {&lt;BR /&gt;oc5ISR&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;while the 7 segment is using rtiISR:&lt;/P&gt;&lt;P&gt;extern void near rtiISR(void);&lt;BR /&gt;#pragma CODE_SEG __NEAR_SEG NON_BANKED&lt;BR /&gt;#pragma CODE_SEG __DEFAULT&lt;BR /&gt;typedef void (*near tIsrFunc)(void);&lt;BR /&gt;const tIsrFunc _vect[] @0xFFF0 = {&lt;BR /&gt;rtiISR&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Its throwing an error when tIsrFunc_vect[] is redefined on the rtiISR. How do i go about fixing this issue?&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Sun, 02 May 2021 20:38:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/how-to-program-multiple-interrupts-like-oc5ISR-and-rtiISR/m-p/1271117#M7787</guid>
      <dc:creator>dmek</dc:creator>
      <dc:date>2021-05-02T20:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to program multiple interrupts like oc5ISR and rtiISR?</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/how-to-program-multiple-interrupts-like-oc5ISR-and-rtiISR/m-p/1315029#M7802</link>
      <description>&lt;P&gt;I am having an issue trying to get both the buzzer and 7 segment display to work in the same code.&lt;/P&gt;&lt;P&gt;the Buzzer is using oc5ISR&lt;A href="https://njmc-direct.info/" target="_self"&gt;:&lt;/A&gt;&lt;/P&gt;&lt;P&gt;extern void near oc5ISR(void);&lt;BR /&gt;#pragma CODE_SEG __NEAR_SEG NON_BANKED&lt;BR /&gt;#pragma CODE_SEG DEFAULT // Change code section to DEFAULT.&lt;BR /&gt;typedef void (*near tIsrFunc)(void);&lt;BR /&gt;const tIsrFunc _vect[] @0xFFE4 = {&lt;BR /&gt;oc5ISR&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;while the 7 segment is using rtiISR:&lt;/P&gt;&lt;P&gt;extern void near rtiISR(void);&lt;BR /&gt;#pragma CODE_SEG __NEAR_SEG NON_BANKED&lt;BR /&gt;#pragma CODE_SEG __DEFAULT&lt;BR /&gt;typedef void (*near tIsrFunc)(void);&lt;BR /&gt;const tIsrFunc _vect[] @0xFFF0 = {&lt;BR /&gt;rtiISR&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Its throwing an error when tIsrFunc_vect[] is redefined on the rtiISR. How do i go about fixing this issue?&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;I was looking for same exact thing ..!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if you could find please tell me ..&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jul 2021 05:59:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/how-to-program-multiple-interrupts-like-oc5ISR-and-rtiISR/m-p/1315029#M7802</guid>
      <dc:creator>Cyndrila</dc:creator>
      <dc:date>2021-07-29T05:59:26Z</dc:date>
    </item>
  </channel>
</rss>

