<?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>8-bit Microcontrollers中的主题 in need of sample code 9s08qg8</title>
    <link>https://community.nxp.com/t5/8-bit-Microcontrollers/in-need-of-sample-code-9s08qg8/m-p/133445#M3399</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;is there a sample code to use on a demo9s08qg8 to send characters on rs232 port via hypeterm ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i'm quite new to the hc9s08 and code warrior .. but so far i'm getting the hang of it&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;i've been playing ard with definitions and sending out via a printf command&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;and all i got is the character in buffer .. but not in hyperterm ..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks ..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 May 2007 02:41:25 GMT</pubDate>
    <dc:creator>miSta</dc:creator>
    <dc:date>2007-05-11T02:41:25Z</dc:date>
    <item>
      <title>in need of sample code 9s08qg8</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/in-need-of-sample-code-9s08qg8/m-p/133445#M3399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;is there a sample code to use on a demo9s08qg8 to send characters on rs232 port via hypeterm ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;i'm quite new to the hc9s08 and code warrior .. but so far i'm getting the hang of it&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;i've been playing ard with definitions and sending out via a printf command&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;and all i got is the character in buffer .. but not in hyperterm ..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks ..&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 02:41:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/in-need-of-sample-code-9s08qg8/m-p/133445#M3399</guid>
      <dc:creator>miSta</dc:creator>
      <dc:date>2007-05-11T02:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: in need of sample code 9s08qg8</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/in-need-of-sample-code-9s08qg8/m-p/133446#M3400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;if you include embedded.c into your app and have a look at it you should&amp;nbsp;find it includes&amp;nbsp;a printf function calling terminal.c and those functions in&amp;nbsp;turn calling&amp;nbsp;termio.c. These have to be set up correctly for the QG8 though.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Browse through these and see if you can modifiy them to your purpose.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;here's a couple of clues if youre not too familiar with the SCI module.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;----code snip-----&lt;/DIV&gt;&lt;DIV&gt;void fnSCI_Setup(void)&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; SCIC1= 0;&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;&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;&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; //8 bits no parity&lt;BR /&gt;&amp;nbsp;&amp;nbsp; SCIC2=(SCIC2_TE_MASK)&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; //trasmit enabled only (no receive), no interrupts&lt;BR /&gt;&amp;nbsp;&amp;nbsp; SCIBDH=0;&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;&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;&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; //these two are used to set up the baud rate&lt;BR /&gt;&amp;nbsp;&amp;nbsp; SCIBDL=0x3B;&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;&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // values vary depending on how the bus clock is set up.&lt;BR /&gt;}&lt;/DIV&gt;&lt;DIV&gt;--------code snip---------&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;BAUDRATE=BUS CLOCK/(16XBR)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;where BR is the lower 13 bits of the WORD combination of SCIBDH and SCIBDL&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;You might consider going into termio.c and changing&amp;nbsp; the TERMIO_Init function to suit your setup.&lt;/DIV&gt;&lt;DIV&gt;You could also create your own setup function and relace the TERMIO_Init calls with your own.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Notice in termio.c that the functions are using different methods depending on compile options. Different processors have their bit options in different places etc and the register names differ. If there's no suitable code in any of the options, you'll have to insert your own.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;The SCI setup/init should be done before using printf.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;John Dowdell&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 15:31:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/in-need-of-sample-code-9s08qg8/m-p/133446#M3400</guid>
      <dc:creator>ThaManJD</dc:creator>
      <dc:date>2007-05-11T15:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: in need of sample code 9s08qg8</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/in-need-of-sample-code-9s08qg8/m-p/133447#M3401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;Hello,&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;When using a low level device with very limited resources, such as the S08QG8, I would be very wary about using library functions such as printf or sprintf.&amp;nbsp; Because of the many data formatting options available, they are complex functions that will consume a very significant portion of available MCU resources.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;If your requirement is&amp;nbsp;to send ASCII message data, you will&amp;nbsp;consume far less of the resources by&amp;nbsp;using&amp;nbsp;a SCI&amp;nbsp;character send function directly, in order to send&amp;nbsp;string data.&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;Regards,&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;Mac&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 21:49:08 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/in-need-of-sample-code-9s08qg8/m-p/133447#M3401</guid>
      <dc:creator>bigmac</dc:creator>
      <dc:date>2007-05-11T21:49:08Z</dc:date>
    </item>
    <item>
      <title>Re: in need of sample code 9s08qg8</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/in-need-of-sample-code-9s08qg8/m-p/133448#M3402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hi miSta,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I have attached a CW project that heavily uses the serial port for a user interface. This should have all you need to know plus more.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 12 May 2007 05:37:54 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/in-need-of-sample-code-9s08qg8/m-p/133448#M3402</guid>
      <dc:creator>peg</dc:creator>
      <dc:date>2007-05-12T05:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: in need of sample code 9s08qg8</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/in-need-of-sample-code-9s08qg8/m-p/133449#M3403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Yes, the DEMO9S08QG8_APP is very nice for getting an RS232 user interface off the ground. I'm using it as well for this purpose.&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2007 23:58:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/in-need-of-sample-code-9s08qg8/m-p/133449#M3403</guid>
      <dc:creator>irob</dc:creator>
      <dc:date>2007-05-15T23:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: in need of sample code 9s08qg8</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/in-need-of-sample-code-9s08qg8/m-p/133450#M3404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hi Peg,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;You referenced a sample of Serial Interface programing code for the QG8.&amp;nbsp; It was DEMO9S08QG8_APP.ZIP.&amp;nbsp; I can not open it.&amp;nbsp; Is it still available in some location&amp;nbsp;where it can be downloaded?&amp;nbsp; I am learning the QG8 and really learn a bunch from reviewing&amp;nbsp;"already written" code.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Thanks&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;John&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Feb 2008 23:59:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/in-need-of-sample-code-9s08qg8/m-p/133450#M3404</guid>
      <dc:creator>JohnB3</dc:creator>
      <dc:date>2008-02-06T23:59:35Z</dc:date>
    </item>
    <item>
      <title>Re: in need of sample code 9s08qg8</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/in-need-of-sample-code-9s08qg8/m-p/133451#M3405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;Link works for me fine and it opens fine.&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;Message Edited by JimDon on &lt;SPAN class="date_text"&gt;2008-02-06&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;12:02 PM&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Feb 2008 01:00:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/in-need-of-sample-code-9s08qg8/m-p/133451#M3405</guid>
      <dc:creator>JimDon</dc:creator>
      <dc:date>2008-02-07T01:00:59Z</dc:date>
    </item>
    <item>
      <title>Re: in need of sample code 9s08qg8</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/in-need-of-sample-code-9s08qg8/m-p/133452#M3406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, sans-serif; line-height: 14px; background-color: #e2e7e4;"&gt;This is my code: (SE8)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MOV &amp;nbsp; #$3F,SCID&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;MOV &amp;nbsp; #$3B,SCIC1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;MOV &amp;nbsp; #$08,SCIC2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;MOV &amp;nbsp; #$00,SCIBDH &amp;nbsp; &amp;nbsp; ;9600 Bauds &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;MOV &amp;nbsp; #$1A,SCIBDL &amp;nbsp; &amp;nbsp; &amp;nbsp;;9600 Bauds &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;MOV &amp;nbsp; #$FF,PTCDD&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CONT1: &amp;nbsp;EQU &amp;nbsp;$080&lt;/P&gt;&lt;P&gt;CONT2: &amp;nbsp;EQU &amp;nbsp;$081 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROGRAM:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; JSR &amp;nbsp; RETA&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; NOP&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BSET &amp;nbsp;0,PTCD&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MOV &amp;nbsp; #$FF,SCID; Write in SCID Send Datas?&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; JSR &amp;nbsp; N2&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MOV &amp;nbsp; #$0F,SCID &amp;nbsp; &amp;nbsp; ; Write in SCID Send Datas?﻿&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;BCLR &amp;nbsp;0,PTCD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; JSR &amp;nbsp; RETA&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; NOP&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BSET &amp;nbsp;1,PTCD&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; LDA &amp;nbsp; SCID &lt;SPAN style="white-space: pre;"&gt;;&lt;/SPAN&gt; Read &lt;SPAN style="white-space: pre;"&gt;in SCID Send Datas?﻿&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; JSR &amp;nbsp; N2&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BCLR &amp;nbsp;1,PTCD&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;feed_watchdog&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;BRA&amp;nbsp; &amp;nbsp;PROGRAM&lt;/P&gt;&lt;P&gt;RETA:&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; MOV &amp;nbsp; #$FF,CONT2&lt;/P&gt;&lt;P&gt;N2&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MOV &amp;nbsp; #$FF,CONT1&lt;/P&gt;&lt;P&gt;N1 &amp;nbsp; &amp;nbsp; NOP&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; NOP&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DBNZ &amp;nbsp;CONT1,N1&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DBNZ &amp;nbsp;CONT2,N2&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; feed_watchdog&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; RTS﻿&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it My configuration in good?, Sending and Reading?﻿﻿ anyone used Processor Expert for SCI?, i havent understand which is instruction that used for Reding and Sending.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2011 09:36:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/in-need-of-sample-code-9s08qg8/m-p/133452#M3406</guid>
      <dc:creator>Vncnt</dc:creator>
      <dc:date>2011-09-19T09:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: in need of sample code 9s08qg8</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/in-need-of-sample-code-9s08qg8/m-p/133453#M3407</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 have several projects using 9S08QG8; all make use of the SCI and all are in assembly.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.rasmicro.com/DS18B20.htm" rel="nofollow" target="_blank"&gt;http://www.rasmicro.com/DS18B20.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Roger&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Sep 2011 02:08:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/in-need-of-sample-code-9s08qg8/m-p/133453#M3407</guid>
      <dc:creator>RogerSchaefer</dc:creator>
      <dc:date>2011-09-27T02:08:30Z</dc:date>
    </item>
  </channel>
</rss>

