<?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: RTI Isn't in 8-bit Microcontrollers</title>
    <link>https://community.nxp.com/t5/8-bit-Microcontrollers/RTI-Isn-t/m-p/134616#M3765</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Jeepers, that didn't come out right. The middle line in my code got clobbered by the forum somehow. The part that starts with " (1 " should have been followed with 2 less-than symbols (the shift-left operator) followed by " RTIE) ".&lt;BR /&gt;&lt;BR /&gt;What the secret to pasting in-line code in here?&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 29 Oct 2006 22:19:31 GMT</pubDate>
    <dc:creator>Wings</dc:creator>
    <dc:date>2006-10-29T22:19:31Z</dc:date>
    <item>
      <title>RTI Isn't</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/RTI-Isn-t/m-p/134614#M3763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;In my FHSS system I have a period of time when I must detect a 38.4KHz clock coming from my radio chip. I'm using the input capture on a timer to do this. Works fine. I'm also using the RTI in my system (40ms period), but during the time when I'm detecting the clock I have to disable the interrupts from the RTI so it doesn't interfere with my timer ISR (it barely has enough time to do its thing). I do the clock detecting in 56 1.8msec periods. It is during the 1.8ms periods that I clear the RTIE to disable the RTI, and between those periods when the radio chip is changing channels I set the RTIE for a few cycles to allow the RTI to interrupt. If it had timed out during the 1.8ms while the RTIE was clear, I would expect to get an interrupt as soon as I set the RTIE bit. It doesn't.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So the question is, is it normal behavior for the RTI to not interrupt if it times out when its RTIE bit is clear and then the RTIE bit is subsequently set?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;(QG8)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Oct 2006 21:00:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/RTI-Isn-t/m-p/134614#M3763</guid>
      <dc:creator>Wings</dc:creator>
      <dc:date>2006-10-29T21:00:06Z</dc:date>
    </item>
    <item>
      <title>Re: RTI Isn't</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/RTI-Isn-t/m-p/134615#M3764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;RTI is, it's Wingsy that isn't.&lt;BR /&gt;&lt;BR /&gt;To clear the RTIE bit I used.&lt;BR /&gt;LDA SRTISC&lt;BR /&gt;AND #!(1&lt;BR /&gt;STA SRTISC ;STOP THE RTI IRQ DURING CLK SEARCH.&lt;BR /&gt;&lt;BR /&gt;But I should have:&lt;BR /&gt;LDA SRTISC&lt;BR /&gt;AND #~(1&lt;BR /&gt;STA SRTISC ;STOP THE RTI IRQ DURING CLK SEARCH.&lt;BR /&gt;&lt;BR /&gt;Got mixed up on what a 1's compliment operator was in CW assembly.&lt;BR /&gt;&lt;BR /&gt;All OK now. You may resume your normally scheduled activities.&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Oct 2006 22:13:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/RTI-Isn-t/m-p/134615#M3764</guid>
      <dc:creator>Wings</dc:creator>
      <dc:date>2006-10-29T22:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: RTI Isn't</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/RTI-Isn-t/m-p/134616#M3765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Jeepers, that didn't come out right. The middle line in my code got clobbered by the forum somehow. The part that starts with " (1 " should have been followed with 2 less-than symbols (the shift-left operator) followed by " RTIE) ".&lt;BR /&gt;&lt;BR /&gt;What the secret to pasting in-line code in here?&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Oct 2006 22:19:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/RTI-Isn-t/m-p/134616#M3765</guid>
      <dc:creator>Wings</dc:creator>
      <dc:date>2006-10-29T22:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: RTI Isn't</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/RTI-Isn-t/m-p/134617#M3766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;FONT size="2"&gt;Hello Wings,&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;You also could have used the following expression -&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;AND&amp;nbsp; #((1&amp;lt;&amp;lt;RTIE)^$FF)&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 size="2"&gt;The use of Courier New font seems to work better when entering code.&amp;nbsp; Let's see ...&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;&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Oct 2006 23:27:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/RTI-Isn-t/m-p/134617#M3766</guid>
      <dc:creator>bigmac</dc:creator>
      <dc:date>2006-10-29T23:27:51Z</dc:date>
    </item>
  </channel>
</rss>

