<?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のトピックRe: Measuring a known pulse width range with the HCS08</title>
    <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140422#M5625</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hello again,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Due to the HCS08QG8 operating at 3.3V, interfacing to 5V systems can be annoying.&amp;nbsp; For example, this particular sensor operates at 5V, so a seperate power supply will be needed.&amp;nbsp; But, the pulse sense ouput&amp;nbsp;is TTL level, so a simple voltage divider will be needed.&amp;nbsp; A 2:1 ratio should work fine using 100k and 50k resistors.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Perhaps the divided voltage shoud be fed into a buffer (op amp with unity gain) or a more robust analog interface?&amp;nbsp;&amp;nbsp;Unfortunately, analog is needed, but&amp;nbsp;hopefully minimal.&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I wish the HCS08QG was&amp;nbsp;5V tolerant.&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Dec 2006 11:11:16 GMT</pubDate>
    <dc:creator>FC</dc:creator>
    <dc:date>2006-12-21T11:11:16Z</dc:date>
    <item>
      <title>Measuring a known pulse width range with the HCS08</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140413#M5616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hello,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Need advice in measuring a pulse which can vary from 100us to 10ms from an ultrasonic sensor.&amp;nbsp; The difficulty is when the second captured timer value is less than the first (overflow occured) in order to compute the pulse width.&amp;nbsp; Should the timer be reset after each edge rather than using a free running counter?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Ex.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;First input capture value = 0xFF00&lt;/DIV&gt;&lt;DIV&gt;Second input capture value = 0x0060&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Timer clock = 4MHz&lt;/DIV&gt;&lt;DIV&gt;TMOD = 39999 (subtract 1 cycle for overflow)&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 09:39:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140413#M5616</guid>
      <dc:creator>FC</dc:creator>
      <dc:date>2006-12-18T09:39:28Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring a known pulse width range with the HCS08</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140414#M5617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Hi, FC:&lt;BR /&gt;&lt;BR /&gt;If there a reason why you set the modulo register? I see that it's giving you an overflow every 10 milliseconds, but do you really need that? Could you live with an overflow every 16.384 milliseconds?&lt;BR /&gt;&lt;BR /&gt;If you leave the modulo register at its default, you can ignore the issue of which one was greater. If you do a 16-bit subtract, the answer will be correct, regardless of when the timer overflow occurs.&lt;BR /&gt;&lt;BR /&gt;As per your example:&lt;BR /&gt;&lt;BR /&gt;First input capture value = 0xFF00&lt;BR /&gt;Second input capture value = 0x0060&lt;BR /&gt;&lt;BR /&gt;If you subtract the first edge from the second:&lt;PRE&gt; 0x0060
-0xFF00
_______
 0x0160&lt;/PRE&gt;The answer is the correct number of counts between the two edges.&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Oct 2020 08:40:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140414#M5617</guid>
      <dc:creator>rocco</dc:creator>
      <dc:date>2020-10-29T08:40:40Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring a known pulse width range with the HCS08</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140415#M5618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Thanks,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Using a modulo of 0xFFFF is better.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Here is another question,&amp;nbsp; the pulse width is proportional to the distance the sensor detects.&amp;nbsp; Once the pulse width is determined, it needs to be dvided by two to remove the return echo time.&amp;nbsp; Knowing the speed of sound in air, the distance can be computed. But, this involves multiplication/division and may take too many CPU cycles for the HCS08.&amp;nbsp; If a lookup table is used, it can only hold limited distance values.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;The sensor has a fairly linear output.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Any comments?&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 13:16:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140415#M5618</guid>
      <dc:creator>FC</dc:creator>
      <dc:date>2006-12-18T13:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring a known pulse width range with the HCS08</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140416#M5619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Hi FC&lt;BR /&gt;Dividing by two is a simple shift right operation!&lt;BR /&gt;&lt;BR /&gt;Try it!&lt;BR /&gt;&lt;BR /&gt;Saluti Joerg&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Dec 2006 17:11:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140416#M5619</guid>
      <dc:creator>joerg</dc:creator>
      <dc:date>2006-12-18T17:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring a known pulse width range with the HCS08</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140417#M5620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;Hello FC,&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;What is the interval between transmit pulses, i.e. the reading update period? &amp;nbsp;Presumably it must be somewhat greater than 10ms - perhaps a good choice would be 16.384ms, the timer overflow rate, provided the required&amp;nbsp;transmit pulse width is not too large.&amp;nbsp; Can I assume that this will be less than 100 microseconds?.&amp;nbsp; This way, the transmit pulse would actually always have a known starting point, and this might simplify things.&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;To calculate the corresponding distance will obviously require more than a divide by 2 - the factor required will depend on the distance units you require to display.&amp;nbsp; This would best be handled using integer arithmetic, by first multiplying by a suitable integer value, and then dividing by another integer value.&amp;nbsp; You should avoid any temptation to use floating point calculations.&amp;nbsp; With integer operations, I would suspect that there would be adequate time for the reading update, with an update period as suggested above.&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;It is not clear whether you&amp;nbsp;intend to&amp;nbsp;use assembly or C programming.&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>Mon, 18 Dec 2006 18:35:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140417#M5620</guid>
      <dc:creator>bigmac</dc:creator>
      <dc:date>2006-12-18T18:35:41Z</dc:date>
    </item>
    <item>
      <title>Can you buy a programmable oscillator?</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140418#M5621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Hi, FC:&lt;BR /&gt;&lt;BR /&gt;One (somewhat ugly) option I have used in the past is to tailor the clock frequency to the application.&lt;BR /&gt;&lt;BR /&gt;What units do you need to measure in?&lt;BR /&gt;&lt;BR /&gt;If you needed to measure in millimeters, and you used 331 meters/second as the speed of sound, you would have 0.1655 mm/microsecond (after the divide by 2). Since that equates to 6.042 microseconds per millimeter, a clock period of 0.755 microseconds would make your timer count in 1/8 millimeter increments. No math required, unless you wanted to remove the fractional portion, which would require three right-shifts.&lt;BR /&gt;&lt;BR /&gt;You could do this in millimeters with a 2.648 MHz, 5.296 MHz, 10.592 MHz or 21.184 MHz oscillator. You would need the appropriate formula for feet, inches or cubits. You would most likely need a programmable oscillator to get the correct frequency.&lt;BR /&gt;&lt;BR /&gt;just another off-the-wall suggestion.&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 05:56:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140418#M5621</guid>
      <dc:creator>rocco</dc:creator>
      <dc:date>2006-12-19T05:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring a known pulse width range with the HCS08</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140419#M5622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;Hello FC,&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;DIV&gt;&lt;FONT size="2"&gt;If you wish to stick withTimer clock = 4MHz, I would suggest you leave TMOD at the default value of 0xFFFF.&amp;nbsp; This will give a timer overflow period of&amp;nbsp;16.384ms, and&amp;nbsp;easily&amp;nbsp;allow for a maximum delay measurement period of 10 ms.&amp;nbsp; The timer will increment each 0.25 us.&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;Using Rocco's figure of 331 m/s for the speed of sound,&amp;nbsp;this would give a one-way distance of 0.041375 mm for each&amp;nbsp;timer&amp;nbsp;count interval&amp;nbsp;of (both-way) delay.&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;Now, if you were to resolve the distance measurement to the nearest 0.1mm, this would need a multiplying factor of 0.41375 for the count value, and this may be closely represented by the integer quotient 12 / 29.&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;The following code should give the measured distance to 0.1mm resolution, with reasonable accuracy, and should not require too much time to execute.&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 face="Courier New" size="2"&gt;word delay_count;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;dword dist;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;dist = delay_count * 12L;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;dist /= 29;&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;This method would also work for other distance units, provided the required multiplier can be sufficiently accurately represented by an integer&amp;nbsp;quotient.&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;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 20:17:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140419#M5622</guid>
      <dc:creator>bigmac</dc:creator>
      <dc:date>2006-12-19T20:17:50Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring a known pulse width range with the HCS08</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140420#M5623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Thanks for the replies.&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;The sensor can be set to activate at 10Hz which gives plenty of time to calculate the distance.&amp;nbsp; It can be externally triggered as well.&amp;nbsp; This is good project for the HCS08.&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 09:58:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140420#M5623</guid>
      <dc:creator>FC</dc:creator>
      <dc:date>2006-12-20T09:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring a known pulse width range with the HCS08</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140421#M5624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Duh . . . I forgot about the Frequency-Locked-Loop.&lt;BR /&gt;&lt;BR /&gt;You don't need a special oscillator at all. You did ten years ago, when I had to do this type of thing.&lt;BR /&gt;&lt;BR /&gt;You can program the FFL to give you almost any frequency you need from standard oscillators.&lt;BR /&gt;&lt;BR /&gt;Anyway, it looks like you don't heed it. Mac's mult/div approach sounds like the way to go to me.&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 11:03:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140421#M5624</guid>
      <dc:creator>rocco</dc:creator>
      <dc:date>2006-12-20T11:03:09Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring a known pulse width range with the HCS08</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140422#M5625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hello again,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Due to the HCS08QG8 operating at 3.3V, interfacing to 5V systems can be annoying.&amp;nbsp; For example, this particular sensor operates at 5V, so a seperate power supply will be needed.&amp;nbsp; But, the pulse sense ouput&amp;nbsp;is TTL level, so a simple voltage divider will be needed.&amp;nbsp; A 2:1 ratio should work fine using 100k and 50k resistors.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Perhaps the divided voltage shoud be fed into a buffer (op amp with unity gain) or a more robust analog interface?&amp;nbsp;&amp;nbsp;Unfortunately, analog is needed, but&amp;nbsp;hopefully minimal.&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I wish the HCS08QG was&amp;nbsp;5V tolerant.&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 11:11:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140422#M5625</guid>
      <dc:creator>FC</dc:creator>
      <dc:date>2006-12-21T11:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Measuring a known pulse width range with the HCS08</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140423#M5626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;Hello FC,&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;Yet another way of achieving the required level shift&amp;nbsp;is to use a suitable N-channel MOSFET.&amp;nbsp; The TTL sensor output would connect to the gate of the MOSFET, the drain would connect to the MCU, and the source would connect to ground.&amp;nbsp; You might also need to provide an external pull-up resistor at the drain, if the internal pull-up within the MCU does not provide sufficient current for adequate switching speed (low to high).&amp;nbsp; Of course, you would also need to&amp;nbsp;take into account the polarity inversion of the signal at the MCU pin.&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;P&gt;Message Edited by bigmac on &lt;SPAN class="date_text"&gt;2006-12-22&lt;/SPAN&gt;&lt;SPAN class="time_text"&gt;01:07 AM&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 23:04:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Measuring-a-known-pulse-width-range-with-the-HCS08/m-p/140423#M5626</guid>
      <dc:creator>bigmac</dc:creator>
      <dc:date>2006-12-21T23:04:32Z</dc:date>
    </item>
  </channel>
</rss>

