<?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: CODE DOESNT STOP RUNNING ON mc9s12dp512 in CodeWarrior Development Tools</title>
    <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664016#M5912</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ibtissem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you mean you remove "break;", you still have illegal bp error?&lt;/P&gt;&lt;P&gt;Because I don't have exact your board, I tested your project (with removing "break") in full chip simulation mode, there is no illegal bp error. see attached video.&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, 17 Apr 2017 05:48:05 GMT</pubDate>
    <dc:creator>ZhangJennie</dc:creator>
    <dc:date>2017-04-17T05:48:05Z</dc:date>
    <item>
      <title>CODE DOESNT STOP RUNNING ON mc9s12dp512</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664009#M5905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.nxp.com/tags/#/?tags=hcs12%28x%29"&gt;hcs12(x)&lt;/A&gt;&amp;nbsp;&lt;A _jive_internal="true" href="https://community.nxp.com/tags/#/?tags=codewarrior%20v5.7"&gt;codewarrior v5.7&lt;/A&gt;&amp;nbsp;&lt;A _jive_internal="true" href="https://community.nxp.com/tags/#/?tags=codewarrior%20for%20hcs12%28x%29%20microcontrollers%20v5.2%20eval"&gt;codewarrior for hcs12(x) microcontrollers v5.2 eval&lt;/A&gt;&amp;nbsp;&lt;A _jive_internal="true" href="https://community.nxp.com/tags/#/?tags=ultrasonic"&gt;ultrasonic&lt;/A&gt;&amp;nbsp;#range finder&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hello ,&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm working on an ultrasonic distance measurement circuit using&amp;nbsp;mc9s12dp512 , the circuit is mainly consituted of an ultrasonic sensor (HC-SR04) and an LCD display , Port A of the MCU is used for data , and the 3 first pin of PORTB is to control the LCD , TC0 (sensor trigger) is used as an output compare to genrate a pulse of 10us and TC1 (sensor echo ) as input capture to measure the pulse width . when runinng the below code it doesnt stop , i have tried the breakpoints and nothing seems to have a problem , any idea where the problem might be ?&amp;nbsp;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;code :&lt;/P&gt;&lt;P&gt;#include &amp;lt;hidef.h&amp;gt; /* common defines and macros */&lt;BR /&gt;#include "derivative.h" /* derivative-specific definitions */ &lt;BR /&gt; &lt;BR /&gt; #include "c:\Program Files (x86)\Freescale\CWS12v5.2\lib\hc12c\include\mc9s12dp512.h"&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; unsigned diff, edge1, overflow; &lt;BR /&gt; unsigned long pulse_width; unsigned long range ; &lt;BR /&gt; #define DelayHi 15 // high time of the pulses to be created &lt;BR /&gt; #define DelayLo 30000 // low time of the pulses to be created &lt;BR /&gt; #define NN 10 // number of pulses to be created &lt;BR /&gt; int pcnt; &lt;BR /&gt; #define data_port PORTA;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; #define rs PORTA_BIT0;&lt;BR /&gt; #define rw PORTB_BIT1 ;&lt;BR /&gt; #define en PORTB_BIT2 ; // pulse count &lt;BR /&gt; char HiorLo; &lt;BR /&gt; extern void near tovisr(void);&lt;BR /&gt; extern void near tc0ISR(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[] @0xFFDE = &lt;BR /&gt; { &lt;BR /&gt; tovisr, &lt;BR /&gt; tc0ISR }; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; void delay_ms(unsigned int msec) {&lt;BR /&gt; int i ;&lt;BR /&gt;{&lt;BR /&gt; while (msec != 0) &lt;BR /&gt; {&lt;BR /&gt; for (i=5; i &amp;gt;0;i--){};&lt;BR /&gt; break;&lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt;void lcd_cmd(unsigned char dat) &lt;BR /&gt;{&lt;BR /&gt; &lt;BR /&gt;dat =PORTA &amp;amp; 0xFF;&lt;BR /&gt;PORTB=PORTB &amp;amp; 0xF1 ;// CLEARS rs=0&lt;BR /&gt;PORTB=PORTB &amp;amp; 0xF2;//rw 0;&lt;BR /&gt;PORTB=PORTB | 0xFB;//en 1 sets the bit 2 of PORTB to 1 ;&lt;BR /&gt;delay_ms(1);&lt;BR /&gt;PORTB=PORTB &amp;amp; 0xF4;&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt; &lt;BR /&gt;void lcd_data(unsigned char dat) // Function to send data to LCD&lt;BR /&gt;{&lt;BR /&gt; &lt;BR /&gt;dat = PORTA &amp;amp; 0xFF;&lt;BR /&gt;PORTB=PORTB | 0xFE; // Rs=1&lt;BR /&gt;PORTB=PORTB &amp;amp; 0xF2; //RW=0&lt;BR /&gt;PORTB=PORTB | 0xFB;//EN=1&lt;BR /&gt;delay_ms(1);&lt;BR /&gt;PORTB=PORTB &amp;amp; 0xF4; //EN=0&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt; &lt;BR /&gt;void lcd_string( char *str) // Function to send string to LCD&lt;BR /&gt;{&lt;BR /&gt;int i=0;&lt;BR /&gt;while(str[i]!='\0')&lt;BR /&gt;{&lt;BR /&gt; lcd_data(str[i]);&lt;BR /&gt; i++;&lt;BR /&gt; delay_ms(1);&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt; &lt;BR /&gt; // flag to choose &lt;BR /&gt; void pulsetrig(void) &lt;BR /&gt; { &lt;BR /&gt; &lt;BR /&gt; TSCR1= 0x90; &lt;BR /&gt; // enable TCNT and faster timer flag clear &lt;BR /&gt; TSCR2 = 0x04; // set TCNT clock input prescaler to 16 &lt;BR /&gt; TFLG1 = TFLG1_C0F_MASK; // clear C0F flag &lt;BR /&gt; TIOS |= TIOS_IOS0 ; // enable OC0 &lt;BR /&gt; TCTL2 = 0x03; // set OC0 pin action to be pull high &lt;BR /&gt; TC0 = TCNT+ 16; &lt;BR /&gt; while (!(TFLG1_C0F == 0)); // pull PT0 pin high quickly // “ &lt;BR /&gt; pcnt = 2 * NN-1; // prepare to create NN pulses //(need to toggle 2*NN 2 1 times) &lt;BR /&gt; TCTL2 =0x01; // set OC0 pin action to be toggle &lt;BR /&gt; TC0 += DelayHi; // start the second OC0 operation &lt;BR /&gt; HiorLo = 0; // next time use DelayLo as delay count of OC0 operation &lt;BR /&gt; TIE |=TFLG1_C0F_MASK; // enable TC0 interrupt &lt;BR /&gt; asm("cli"); // “ &lt;BR /&gt; // do nothing or do something else &lt;BR /&gt; } &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; interrupt void tc0ISR(void) { &lt;BR /&gt; if(HiorLo){ &lt;BR /&gt; TC0 +=DelayHi; &lt;BR /&gt; HiorLo =0; &lt;BR /&gt; } else { &lt;BR /&gt; TC0 +=DelayLo; &lt;BR /&gt; HiorLo = 1; &lt;BR /&gt; } &lt;BR /&gt; pcnt--; &lt;BR /&gt; if(pcnt ==0){ &lt;BR /&gt; TIE =0; // disable OC0 interrupt &lt;BR /&gt; TIOS &amp;amp;= 0xFE; // disable OC0 &lt;BR /&gt; } &lt;BR /&gt; }&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; void echopulse(void) &lt;BR /&gt; { pulsetrig();&lt;BR /&gt; overflow = 0; &lt;BR /&gt; TSCR1 = 0x90; // enable timer and fast flag clear &lt;BR /&gt; TSCR2 = 0x05; // set prescaler to 32, no timer overflow interrupt &lt;BR /&gt; TIOS &amp;amp;= TIOS_IOS1; // select input-capture 0 &lt;BR /&gt; TCTL4 = 0x01; // prepare to capture the rising edge &lt;BR /&gt; TFLG1 = TFLG1_C1F_MASK; // clear C0F flag &lt;BR /&gt; &lt;BR /&gt; while (!(TFLG1_C0F == 0)); // wait for the arrival of the rising edge &lt;BR /&gt; TFLG2 = 0x80; // clear TOF flag &lt;BR /&gt; TSCR2 |= 0x80; // enable TCNT overflow interrupt &lt;BR /&gt; asm("cli");&lt;BR /&gt; edge1 = TC1; // save the first edge &lt;BR /&gt; TCTL4 = 0x02;&lt;BR /&gt; while (!(TFLG1_C0F == 0)); // prepare to capture the falling edge &lt;BR /&gt; // wait for the arrival of the falling edge &lt;BR /&gt; diff = TC1 - edge1; &lt;BR /&gt; if (TC1 &amp;lt; edge1) ;&lt;BR /&gt; &lt;BR /&gt; overflow -= 1; &lt;BR /&gt; pulse_width = (long)overflow * 65536u + (long)diff;&lt;BR /&gt; lcd_cmd(0xc0);&lt;BR /&gt; &lt;BR /&gt; delay_ms(2);&lt;BR /&gt; lcd_string("Distance:");&lt;BR /&gt; lcd_cmd(0xc9);&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; if(pulse_width&amp;lt;35000) ; //actually you need to use 38000 but the sensor may not work at higher levels &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; range=(pulse_width/59 );&lt;/P&gt;&lt;P&gt;lcd_data(range+48); ; &lt;BR /&gt; &lt;BR /&gt; lcd_string("cm");&lt;BR /&gt; &lt;BR /&gt; } &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; interrupt void tovisr(void) &lt;BR /&gt; { &lt;BR /&gt; TFLG2 = 0x80; /* clear the TOF flag */ &lt;BR /&gt; overflow++; &lt;BR /&gt; }&lt;/P&gt;&lt;P&gt;void main (void){&lt;BR /&gt; DDRB =0xFF;&lt;BR /&gt; DDRA= 0xFF;&lt;BR /&gt; echopulse();&lt;BR /&gt; delay_ms(2);&lt;BR /&gt;lcd_cmd(0x38);&lt;BR /&gt; lcd_cmd(0x0c);&lt;BR /&gt; delay_ms(2);&lt;BR /&gt; lcd_cmd(0x01);&lt;BR /&gt; delay_ms(2);&lt;BR /&gt; lcd_cmd(0x80);&lt;BR /&gt; delay_ms(2);&lt;BR /&gt; &lt;BR /&gt; lcd_string("Range finder");&lt;BR /&gt; delay_ms(10);&lt;BR /&gt; &lt;BR /&gt; TC1=0;&lt;BR /&gt; TC0=0;&lt;BR /&gt; &lt;BR /&gt; while(1){&lt;BR /&gt; &lt;BR /&gt; echopulse();&lt;BR /&gt; delay_ms(2);&lt;BR /&gt; break;&lt;BR /&gt; }&lt;BR /&gt; &lt;BR /&gt;}&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-337770"&gt;Project.rar&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2017 10:25:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664009#M5905</guid>
      <dc:creator>ibtisbr</dc:creator>
      <dc:date>2017-04-10T10:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: CODE DOESNT STOP RUNNING ON mc9s12dp512</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664010#M5906</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;To investigate this problem, we need reproduce it first.&lt;/P&gt;&lt;P&gt;Thus we need your demo project.&lt;/P&gt;&lt;P&gt;Please upload it here thus I can investigate it further. Thanks.&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>Tue, 11 Apr 2017 07:44:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664010#M5906</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2017-04-11T07:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: CODE DOESNT STOP RUNNING ON mc9s12dp512</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664011#M5907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks for your response ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have modified my entry , please refer to the&amp;nbsp;attached .rar file ,&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ibtissem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Apr 2017 21:37:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664011#M5907</guid>
      <dc:creator>ibtisbr</dc:creator>
      <dc:date>2017-04-11T21:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: CODE DOESNT STOP RUNNING ON mc9s12dp512</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664012#M5908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;I don't know why you add "break" in while loop.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/4405iA578DD707E9FEB70/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;please remove it thus your code can continue to run.&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>Thu, 13 Apr 2017 07:26:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664012#M5908</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2017-04-13T07:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: CODE DOESNT STOP RUNNING ON mc9s12dp512</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664013#M5909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did , but when it wont stop runing .&lt;/P&gt;&lt;P&gt;regards&amp;nbsp;&lt;/P&gt;&lt;P&gt;ibtissem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Apr 2017 11:44:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664013#M5909</guid>
      <dc:creator>ibtisbr</dc:creator>
      <dc:date>2017-04-13T11:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: CODE DOESNT STOP RUNNING ON mc9s12dp512</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664014#M5910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in your original code, you add "break"&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/6102iB31A8C769DD15A7E/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;thus after execution "break", your program goes to the end . then you will see "illegal BP" message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when we burn a program into a chip,&amp;nbsp; we usually need it run until power down. if you add a "break", the program will execute for only once, practically we never do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Jennie Zhang&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&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>Fri, 14 Apr 2017 09:27:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664014#M5910</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2017-04-14T09:27:02Z</dc:date>
    </item>
    <item>
      <title>Re: CODE DOESNT STOP RUNNING ON mc9s12dp512</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664015#M5911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand , but i removed the break &amp;nbsp;and i'm still having the same issue of endless runing .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ibtissem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Apr 2017 19:02:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664015#M5911</guid>
      <dc:creator>ibtisbr</dc:creator>
      <dc:date>2017-04-15T19:02:06Z</dc:date>
    </item>
    <item>
      <title>Re: CODE DOESNT STOP RUNNING ON mc9s12dp512</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664016#M5912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ibtissem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you mean you remove "break;", you still have illegal bp error?&lt;/P&gt;&lt;P&gt;Because I don't have exact your board, I tested your project (with removing "break") in full chip simulation mode, there is no illegal bp error. see attached video.&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, 17 Apr 2017 05:48:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664016#M5912</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2017-04-17T05:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: CODE DOESNT STOP RUNNING ON mc9s12dp512</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664017#M5913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again Jennie ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I m really sorry for the long Q&amp;amp;A but i dont have an illegal bp as seen in the video the simulation keeps running and doesnt return done , try to run it again in full chip simulation and you can notice that it doesnt stop runing for endless cpu cycles .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;ibtissem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2017 07:49:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664017#M5913</guid>
      <dc:creator>ibtisbr</dc:creator>
      <dc:date>2017-04-17T07:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: CODE DOESNT STOP RUNNING ON mc9s12dp512</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664018#M5914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I run it again but still can't see any problem.&lt;/P&gt;&lt;P&gt;Please make a video to show us your problem to avoid misunderstanding.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Jennie&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2017 08:38:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/CODE-DOESNT-STOP-RUNNING-ON-mc9s12dp512/m-p/664018#M5914</guid>
      <dc:creator>ZhangJennie</dc:creator>
      <dc:date>2017-04-17T08:38:53Z</dc:date>
    </item>
  </channel>
</rss>

