<?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: Problem with Interrupts MC9S12XDP512 in CodeWarrior for MCU</title>
    <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267384#M10074</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;In SK-S12XDP512-A 's schematic, it's PT1 that read correctly.&lt;/P&gt;&lt;P&gt;Why PT0, PT2 and PT3 are don't read like PT1, in a same time ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Mar 2013 08:29:10 GMT</pubDate>
    <dc:creator>Claire</dc:creator>
    <dc:date>2013-03-04T08:29:10Z</dc:date>
    <item>
      <title>Problem with Interrupts MC9S12XDP512</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267383#M10073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P style="min- padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to have 4 signals in output in same time.&lt;/P&gt;&lt;P&gt;I use 4 interrupts that uses timer-counter.&lt;/P&gt;&lt;P style="min- padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But when I see t 4 output, just one interrupt run correctly (interrupt 2). I think I have a problem with priority (normally I desable all)&lt;/P&gt;&lt;P&gt;I don't understand why I have only one signal correctly&amp;nbsp; instead of 4.&lt;/P&gt;&lt;P style="min- padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Original Attachment has been moved to: &lt;A _jive_internal="true" href="https://community.nxp.com/docs/DOC-339034"&gt;main02-13.c.zip&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Feb 2013 08:48:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267383#M10073</guid>
      <dc:creator>Claire</dc:creator>
      <dc:date>2013-02-21T08:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Interrupts MC9S12XDP512</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267384#M10074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;In SK-S12XDP512-A 's schematic, it's PT1 that read correctly.&lt;/P&gt;&lt;P&gt;Why PT0, PT2 and PT3 are don't read like PT1, in a same time ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 08:29:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267384#M10074</guid>
      <dc:creator>Claire</dc:creator>
      <dc:date>2013-03-04T08:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Interrupts MC9S12XDP512</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267385#M10075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I shortly checked your code and I have few points for you:&lt;/P&gt;&lt;OL style="list-style-type: decimal;"&gt;&lt;LI&gt;DDRT = 0X0F; I would like to recommend DDRT = 0x0F;&lt;/LI&gt;&lt;LI&gt;I don’t see initialization of TCx registers. You write there only in interrupt routine. I would like to recommend set ECT registers (Include TCx register) inside timer_counter() function.&lt;/LI&gt;&lt;LI&gt;Default priority level is 1, if you don’t change, interrupts routines will be serviced subsequently. If there is more pending interrupts with the same priority in the same time. Interrupt at higher interrupt vector wins.&lt;/LI&gt;&lt;LI&gt;Commands like INT_CFDATA0 = 0x00; doesn’t have any sense here. If you want disable interrupt for any timer channel, please use TIE register.&lt;/LI&gt;&lt;LI&gt;If you want change priority, you have to set INT_CFADDR and after that modify some of INT_CFDATAx registers. Example Code:&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#define ECT0_VEC&amp;nbsp; 0xEE /* vector address= 2 * channel id */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#define CHANGE_PRIORITY(vec_adr, cfdata)&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;&amp;nbsp;&amp;nbsp; \&lt;/P&gt;&lt;P&gt;&amp;nbsp; INT_CFADDR= (vec_adr) &amp;amp; 0xF0; \&lt;/P&gt;&lt;P&gt; INT_CFDATA_ARR[((vec_adr) &amp;amp; 0x0F) &amp;gt;&amp;gt; 1]= (cfdata)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHANGE_PRIORITY (ECT0_VEC, 0x05); /* RQST=0 and PRIO=5 */&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Mar 2013 21:27:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267385#M10075</guid>
      <dc:creator>RadekS</dc:creator>
      <dc:date>2013-03-04T21:27:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Interrupts MC9S12XDP512</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267386#M10076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And if I want a same priority for the four interrupts. It's the same code or I must write for interrupt 2 (for exemple):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#define ECT&lt;SPAN style="color: #ff0000;"&gt;1&lt;/SPAN&gt;_VEC&amp;nbsp; 0xEE /* vector address= 2 * channel id */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#define CHANGE_PRIORITY(vec_adr, cfdata)&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;&amp;nbsp;&amp;nbsp; \&lt;/P&gt;&lt;P&gt;&amp;nbsp; INT_CFADDR= (vec_adr) &amp;amp; 0xF0; \&lt;/P&gt;&lt;P&gt;INT_CFDATA_ARR[((vec_adr) &amp;amp; 0x0F) &amp;gt;&amp;gt; 1]= (cfdata)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHANGE_PRIORITY (ECT&lt;SPAN style="color: #ff0000;"&gt;1&lt;/SPAN&gt;_VEC, 0x05); /* RQST=0 and PRIO=5 */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or is it possible to desable all priority ? Because, for me, TIE enable interrupt but doesn't control priorities.&lt;/P&gt;&lt;P&gt;For change vector adress why 0xEE means 2 ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't understand your code. What does it mean ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is vec_adr and cfdata ? they are integers ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 08:37:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267386#M10076</guid>
      <dc:creator>Claire</dc:creator>
      <dc:date>2013-03-05T08:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Interrupts MC9S12XDP512</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267387#M10077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are 120 interrupt vectors. For saving occupied register space, priority registers are accessible trough “page” CFADDR. Interrupt vectors are divided into groups of eight vectors (CFDATA0..CFDATA7).&lt;/P&gt;&lt;P&gt;This way we can set priority for almost all interrupts by 9 registers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#define ECT0_VEC&amp;nbsp; 0xEE &lt;/P&gt;&lt;P&gt;This definition just contains lower part of interrupt vector address. See Table 1-12. Interrupt Vector Locations in RM (page 73..75).&lt;/P&gt;&lt;P&gt;Similar way we can define other vectors:&lt;/P&gt;&lt;P&gt;#define ECT0_VEC&amp;nbsp; 0xEE&lt;/P&gt;&lt;P&gt;#define ECT1_VEC&amp;nbsp; 0xEC&lt;/P&gt;&lt;P&gt;#define ECT2_VEC&amp;nbsp; 0xEA&lt;/P&gt;&lt;P&gt;#define ECT3_VEC&amp;nbsp; 0xE8&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHANGE_PRIORITY(vec_adr, cfdata) is just universal function for priority change (and route to XGATE when RQST=1) where vec_adr is vector address from previous definitions and cfdata is content which we want write into appropriate CFDATAx register.&lt;/P&gt;&lt;P&gt;Into INT_CFADDR we write just higher half-byte from vector address, in all our cases 0xE.&lt;/P&gt;&lt;P&gt;Vectors contains 16bit addresses, therefore we take lower part from vector address and divide by 2 (shift to right &amp;gt;&amp;gt; 1). For example: ECT3_VEC&amp;nbsp; 0xE8, we take 0x8, divide by two is 0x4, therefore we write into CFDATA4&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We should call this function for every vector (where we want change priority/route to XGATE)&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;CHANGE_PRIORITY (ECT0_VEC, 0x05); /* RQST=0 and PRIO=5 */&lt;/P&gt;&lt;P&gt;CHANGE_PRIORITY (ECT1_VEC, 0x04); /* RQST=0 and PRIO=4 */&lt;/P&gt;&lt;P&gt;CHANGE_PRIORITY (ECT2_VEC, 0x01); /* RQST=0 and PRIO=1 */&lt;/P&gt;&lt;P&gt;CHANGE_PRIORITY (ECT3_VEC, 0x87); /* routed to XGATE RQST=1 and PRIO=7 */&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 12:50:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267387#M10077</guid>
      <dc:creator>RadekS</dc:creator>
      <dc:date>2013-03-05T12:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Interrupts MC9S12XDP512</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267388#M10078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok&lt;/P&gt;&lt;P&gt;So if I want write into CFDATA1, I take ECT2_VEC 0xE2 ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And if I want the same priority for 4 interrupts without XGATE I can write :&lt;/P&gt;&lt;P&gt;CHANGE_PRIORITY (ECT0_VEC, 0x05);&lt;/P&gt;&lt;P&gt;CHANGE_PRIORITY (ECT1_VEC, 0x05);&lt;/P&gt;&lt;P&gt;CHANGE_PRIORITY (ECT2_VEC, 0x05);&lt;/P&gt;&lt;P&gt;CHANGE_PRIORITY (ECT3_VEC, 0x05);&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this code I will modify like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#define ECT&lt;SPAN style="color: #ff0000;"&gt;0&lt;/SPAN&gt;_VEC&amp;nbsp; 0xE1 /* vector address= 2 * channel id */&lt;/P&gt;&lt;P&gt;#define ECT&lt;SPAN style="color: #ff0000;"&gt;1&lt;/SPAN&gt;_VEC&amp;nbsp; 0xE2/* vector address= 2 * channel id */&lt;/P&gt;&lt;P&gt;#define ECT&lt;SPAN style="color: #ff0000;"&gt;2&lt;/SPAN&gt;_VEC&amp;nbsp; 0xE4/* vector address= 2 * channel id */&lt;/P&gt;&lt;P&gt;#define ECT&lt;SPAN style="color: #ff0000;"&gt;3&lt;/SPAN&gt;_VEC&amp;nbsp; 0xE6/* vector address= 2 * channel id */ &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#define CHANGE_PRIORITY(vec_adr, cfdata) &lt;/P&gt;&lt;P&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;/P&gt;&lt;P&gt;INT_CFADDR= (vec_adr) &amp;amp; 0xF0; \&lt;/P&gt;&lt;P&gt;INT_CFDATA_ARR[((vec_adr) &amp;amp; 0x0F) &amp;gt;&amp;gt; 1]= (cfdata)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHANGE_PRIORITY (ECT&lt;SPAN style="color: #ff0000;"&gt;0&lt;/SPAN&gt;_VEC, 0x05); /* RQST=0 and PRIO=5 */&lt;/P&gt;&lt;P&gt;CHANGE_PRIORITY (ECT&lt;SPAN style="color: #ff0000;"&gt;1&lt;/SPAN&gt;_VEC, 0x05); /* RQST=0 and PRIO=5 */&lt;/P&gt;&lt;P&gt;CHANGE_PRIORITY (ECT&lt;SPAN style="color: #ff0000;"&gt;2&lt;/SPAN&gt;_VEC, 0x05); /* RQST=0 and PRIO=5 */&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;CHANGE_PRIORITY (ECT&lt;SPAN style="color: #ff0000;"&gt;3&lt;/SPAN&gt;_VEC, 0x05); /* RQST=0 and PRIO=5 */&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 13:22:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267388#M10078</guid>
      <dc:creator>Claire</dc:creator>
      <dc:date>2013-03-05T13:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Interrupts MC9S12XDP512</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267389#M10079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, you cannot define ECT1_VEC&amp;nbsp; as 0xE2. Vector address 0xE2 refers to ECT channel 6. Please look at Table 1-12. Interrupt Vector Locations in RM (page 73..75).&lt;/P&gt;&lt;P&gt;You will see that ECT channel 0 has vector address 0xEE (0xFFEE in default state of IVBR register).&lt;/P&gt;&lt;P&gt;#define ECT0_VEC&amp;nbsp; 0xEE&lt;/P&gt;&lt;P&gt;#define ECT1_VEC&amp;nbsp; 0xEC&lt;/P&gt;&lt;P&gt;#define ECT2_VEC&amp;nbsp; 0xEA&lt;/P&gt;&lt;P&gt;#define ECT3_VEC&amp;nbsp; 0xE8&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 14:20:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267389#M10079</guid>
      <dc:creator>RadekS</dc:creator>
      <dc:date>2013-03-05T14:20:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Interrupts MC9S12XDP512</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267390#M10080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I see.&lt;/P&gt;&lt;P&gt;But you say :&lt;/P&gt;&lt;BLOCKQUOTE&gt;
&lt;P&gt;For example: ECT3_VEC&amp;nbsp; 0xE8, we take 0x8, divide by two is 0x4, therefore we write into CFDATA4&lt;/P&gt;
 &lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;BR /&gt;So I think if I take ECT1_VEC 0xE2, I write into CFDATA1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;I just tested&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;the new&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;code but interrpts don't run correctly. I send frame in Bus CAN and &lt;SPAN lang="en"&gt;&lt;SPAN class="hps"&gt;when I&lt;/SPAN&gt; modify&lt;SPAN class="hps"&gt; data,&lt;/SPAN&gt; the &lt;SPAN class="hps"&gt;signal&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;at in output&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;does not change. (I must have 4 slot signals &lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;based on&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;the input data). Only 1 interrupt run correctly (TOC1_ISR)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 14:43:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267390#M10080</guid>
      <dc:creator>Claire</dc:creator>
      <dc:date>2013-03-05T14:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Interrupts MC9S12XDP512</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267391#M10081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, with one exception:&lt;/P&gt;&lt;P&gt;“I take ECT6_VEC 0xE2, I write into CFDATA1”&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Back to your code:&lt;/P&gt;&lt;P&gt;Did you test that all your wheel_ arrays contain correct data (if you received correct data over CAN)?&lt;/P&gt;&lt;P&gt;Can you put breakpoint into TC0 (for example) interrupt routine and test if CPU executes this code?&lt;/P&gt;&lt;P&gt;Are you sure that you watch correct pins (connector J101, pins 11..14)?&lt;/P&gt;&lt;P&gt;&lt;SPAN class="mce_paste_marker"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Mar 2013 22:09:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267391#M10081</guid>
      <dc:creator>RadekS</dc:creator>
      <dc:date>2013-03-05T22:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with Interrupts MC9S12XDP512</title>
      <link>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267392#M10082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you. I don't but I had an error when I write in my buffer. When I put a breakpoint I see this error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But just last question,TCO run correctly &lt;SPAN class="hps"&gt;only when&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;i send&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;data upper than 0xD&lt;/SPAN&gt;&lt;SPAN class="hps"&gt;D and&lt;/SPAN&gt;&lt;SPAN class="hps"&gt; haven't the same period as the other signals.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="hps"&gt;Join frame captur with data = 0xCC, data = 0xDD and &lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;screen&lt;/SPAN&gt; &lt;SPAN class="hps"&gt;printed of CANalyzer' interactive generator block.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Mar 2013 08:22:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-for-MCU/Problem-with-Interrupts-MC9S12XDP512/m-p/267392#M10082</guid>
      <dc:creator>Claire</dc:creator>
      <dc:date>2013-03-06T08:22:31Z</dc:date>
    </item>
  </channel>
</rss>

