<?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: Implementing Positioning Algorithms Using Accelerometers ... in 8-bit Microcontrollers</title>
    <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128402#M1676</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I might be a bit tired, but what is the error that people are talking about - is it the "absolute value" thing in formula 1 of the AN? I'd be inclined to think that you could forget about the T if it was constant, along the lines that if your acceleration was in m/s/s, but T was 1 ms, then the velocity would end up&amp;nbsp;being in mm/s and&amp;nbsp;position in micrometres - or something like that (I think?) They don't seem to worry about T in the AN, at&amp;nbsp;least in the integration&amp;nbsp;bit&amp;nbsp;anyway.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Jul 2011 18:37:06 GMT</pubDate>
    <dc:creator>JimB</dc:creator>
    <dc:date>2011-07-28T18:37:06Z</dc:date>
    <item>
      <title>Implementing Positioning Algorithms Using Accelerometer MMA7260Q</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128381#M1655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt; &lt;/DIV&gt;&lt;P&gt;I`ve just got my MMA7260Q accelerometer sample thanks to Freescale. Using this accelerometer i want to make a position application. My question is if somebody had implemented a position algorithm using this kind of accelerometer and where can i find some tips ?&lt;BR /&gt;Thanks.&lt;/P&gt;&lt;P&gt;--&lt;BR /&gt;Alban edit: FSL Part number in message subject.&lt;/P&gt;&lt;P&gt;Message Edited by Alban on &lt;SPAN class="date_text"&gt;2007-03-28&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;08:48 AM&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2007 07:15:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128381#M1655</guid>
      <dc:creator>night_mode</dc:creator>
      <dc:date>2007-03-28T07:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing Positioning Algorithms Using Accelerometers ...</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128382#M1656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Hi, Night_Mode:&lt;BR /&gt;&lt;BR /&gt;Yes, I have done that with Analog Devices accelerometers, but I can't share the code. I can share an overview of my algorithm.&lt;BR /&gt;&lt;BR /&gt;The accelerometer provides you with acceleration (gee, really?). Mathematically, velocity is the integral-over-time of acceleration, and position is the integral-over-time of velocity. So position can be determined by doing a double-integral of the data derived from the accelerometer.&lt;BR /&gt;&lt;BR /&gt;Easier said than done.&lt;BR /&gt;&lt;BR /&gt;To get any accuracy, both the samples must be accurate and the sample rate high. Any errors in the sample will be integrated as well, and can accumulate quickly. Be careful not to loose any precision in your math, as that loss will also be integrated.&lt;BR /&gt;&lt;BR /&gt;You also have to consider the effects of gravity. The three axes will be affected by 32 feet-per-second-per-second of gravitational acceleration. Somehow, you need to determine which direction is down, and subtract out gravity. I did this subtraction as a vector near the tail end of my calculations.&lt;BR /&gt;&lt;BR /&gt;Without additional sensors to close the loop, you will get both velocity and position drift. That is the nature of an integral that is not using perfectly measured samples.&lt;BR /&gt;&lt;BR /&gt;If you instrument can tilt, a pair of inclinometers would help to determine the direction of the gravitational vector.&lt;BR /&gt;&lt;BR /&gt;I could go on and on. There is a lot to the subject.&lt;P&gt;Message Edited by rocco on &lt;SPAN class="date_text"&gt;2007-03-27&lt;/SPAN&gt;&lt;SPAN class="time_text"&gt;06:07 PM&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2007 08:03:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128382#M1656</guid>
      <dc:creator>rocco</dc:creator>
      <dc:date>2007-03-28T08:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing Positioning Algorithms Using Accelerometers ...</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128383#M1657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Ooo, i have the mathematical background of this problem. I whant to ask you what was the sesitivity of your accelerometer and what was it`s maximum rating: 1.5g,2g,.... I tried to implement the algorithm found in the freescale AN3397 using a 3-axis 2g accelerometer LIS3L02AS4 from ST but it acts very strange, it gave accelerations only when the pcb starts moving and after that if I continued to move the pcb with a normal speed the acceleration was 0.&lt;BR /&gt;You confirmed me that the mathematical background is ok and I`ll try this algorithm with the accelerometer used in the application note: MMA7260Q. Another question: what can you tell me about hardware consideration between sensor and ADC ?&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2007 13:34:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128383#M1657</guid>
      <dc:creator>night_mode</dc:creator>
      <dc:date>2007-03-28T13:34:15Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing Positioning Algorithms Using Accelerometers ...</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128384#M1658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Hi, Night_Mode:&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;BLOCKQUOTE&gt;I want to ask you what was the sensitivity of your accelerometer and what was it`s maximum rating?&lt;/BLOCKQUOTE&gt;I used three of the Analog Devices ADXL105, which measure with 2mG sensitivity, up to 1G.&lt;HR /&gt;&lt;BLOCKQUOTE&gt;I tried to implement the algorithm found in the freescale AN3397 using a 3-axis 2g accelerometer LIS3L02AS4 from ST but it acts very strange, it gave accelerations only when the pcb starts moving and after that if I continued to move the pcb with a normal speed the acceleration was 0.&lt;/BLOCKQUOTE&gt;Yes. That is exactly what you should be seeing. When the board is moving at a constant velocity, the acceleration is zero. However, your integration of acceleration would have given you the current velocity. As you integrate that current velocity (now constant), you will get a changing position. It's unlikely to be very accurate, though.&lt;HR /&gt;&lt;BLOCKQUOTE&gt;Another question: what can you tell me about hardware consideration between sensor and ADC?&lt;/BLOCKQUOTE&gt;I needed a small amount of analog between the sensors and the DSP, mainly to trim the gain and offset, and convert to differential signals. I then used an audio ADC to sample at 24-bit resolution and 48kHz. I then did the bandwidth filters in DSP firmware. I used the DSP56002.&lt;P&gt;Message Edited by rocco on &lt;SPAN class="date_text"&gt;2007-03-28&lt;/SPAN&gt;&lt;SPAN class="time_text"&gt;12:33 AM&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2007 14:32:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128384#M1658</guid>
      <dc:creator>rocco</dc:creator>
      <dc:date>2007-03-28T14:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing Positioning Algorithms Using Accelerometers ...</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128385#M1659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;I whant to mount this device with the accelerometer on the hand and using a software to generate the 3d trajectory of the hand movement and I tought that I`ll never have a constant speed. When I start moving the hand lets say we have an acceleration. Supposing I have a normal speed of the hand in one direction how can i differentiate the no movement case from moving with a constant speed ?, in both cases i have a 0 g acceleration.&lt;BR /&gt;Thanks for the hardware considerations, these are very usefull.&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2007 18:01:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128385#M1659</guid>
      <dc:creator>night_mode</dc:creator>
      <dc:date>2007-03-28T18:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing Positioning Algorithms Using Accelerometers ...</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128386#M1660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Check out this video !&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;A href="http://www.youtube.com/watch?v=yfp5HBUizOQ" rel="nofollow" target="_blank"&gt;http://www.youtube.com/watch?v=yfp5HBUizOQ&lt;/A&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;this is the implementation of a positioning algorithm based in the following appnote !&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;A href="http://www.freescale.com/files/sensors/doc/app_note/AN3397.pdf" rel="nofollow" target="_blank"&gt;http://www.freescale.com/files/sensors/doc/app_note/AN3397.pdf&lt;/A&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;saludos !&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;r&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Mar 2007 23:26:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128386#M1660</guid>
      <dc:creator>RHA</dc:creator>
      <dc:date>2007-03-28T23:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing Positioning Algorithms Using Accelerometers ...</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128387#M1661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;OK, thank you. Then I will try to implement this algorithm. I have some questions about this algorith: why they do 64 sample avarage in a block methode ( 64, mediation, another block of 64, mediation) this means that at 128 samples i`ll have 2 points. I think it will be better to do a rolling avarage and another thing: at some point they make a left shift with 18 and i don`t understand why they multiply the actual calculated position with a 256K value wich is a big number.&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2007 02:59:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128387#M1661</guid>
      <dc:creator>night_mode</dc:creator>
      <dc:date>2007-03-29T02:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing Positioning Algorithms Using Accelerometer MMA7260Q</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128388#M1662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hi,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Our experience on this kind of implementation is documented on app note AN3397:&lt;/DIV&gt;&lt;DIV&gt;&lt;A href="http://www.freescale.com/files/sensors/doc/app_note/AN3397.pdf?fsrch=1" rel="nofollow" target="_blank"&gt;http://www.freescale.com/files/sensors/doc/app_note/AN3397.pdf?fsrch=1&lt;/A&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;you should be able to find some tips for the implementation in here.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;cheers,&lt;/DIV&gt;&lt;DIV&gt;Oscar&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 00:40:09 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128388#M1662</guid>
      <dc:creator>OscarC</dc:creator>
      <dc:date>2007-04-25T00:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing Positioning Algorithms Using Accelerometers ...</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128389#M1663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When reading AN3397 I&amp;nbsp; think I found some small mistakes. Please confirm.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Formula 1:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Area = Sample&lt;FONT size="1"&gt;n-1&lt;/FONT&gt; + [Sample&lt;FONT size="1"&gt;n&lt;/FONT&gt;-Sample&lt;FONT size="1"&gt;n-1&lt;/FONT&gt;]/2 (Total area of slice. A1 + A2)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;No index on Area and no need T, because T=1 (For each slice there is A1 and A2)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Figure 3: Lacks of an axis indicating positive direction of t. Sample&lt;FONT size="1"&gt;n-1&lt;/FONT&gt; and Sample&lt;FONT size="1"&gt;n&lt;/FONT&gt; should be interchanged if time-axis is from left to right.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In general the text is very good and will help me a lot (I´m sure).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanx&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As soon as I have tested MMA7620QT with MSP430 I will post my results.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jan 2010 01:04:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128389#M1663</guid>
      <dc:creator>Arquimedes</dc:creator>
      <dc:date>2010-01-28T01:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing Positioning Algorithms Using Accelerometers ...</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128390#M1664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arquimedes&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, formula is bit wrong. But area index is indeed required.&amp;nbsp;Also T (sampling time) is&amp;nbsp;in general case not equal 1. T should be&amp;nbsp;as small as possible for better accuracy.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Area[n] = (Sample[n-1] + (Sample[n] - Sample[n-1])/2 )&amp;nbsp;* T&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Area[n] = ( (Sample[n-1]&amp;nbsp;+ Sample[n])/2 )&amp;nbsp;* T ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Area = sum of A[i]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jan 2010 02:48:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128390#M1664</guid>
      <dc:creator>kef</dc:creator>
      <dc:date>2010-01-28T02:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing Positioning Algorithms Using Accelerometers ...</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128391#M1665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Your are RIGHT!!! One doubt: Output signals are analog, right? So I must input those signals to an A/D converter. In my breadboard I use P2.1, P2.2 and P2.3 of MSP430F2274. Those pins should be configured as alternative A/D pins. At no movement I measured Vz = 0,846V, Vy = 1,546V and Vx = 1,614V. Those values change a lot if I change MMA7620QT position. So, how can I determine the better position to measure voltages? Or this doesn´t matter? In my circuit in reality I do not have precision requirements. I just want to identify an attempt of violation (removing equipment from its home position). Of course there could be some natural displacements due to cars moving (specially trucks) around and other things. I think that only practice would determine the best threshold in this application.&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jan 2010 03:43:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128391#M1665</guid>
      <dc:creator>Arquimedes</dc:creator>
      <dc:date>2010-01-28T03:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing Positioning Algorithms Using Accelerometers ...</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128392#M1666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you are attempting to detect the removal of equipment from a motor vehicle, perhaps you might utilize a potential change of tilt condition on the action of removal. This could be enhanced if the physical mounting would provide a "built in" tilt motion during installation and removal.&amp;nbsp; The tilt would be detected by a change in the gravitational axis.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Changes of vehicle motion are tyically likely to be significantly less than 1g, and would be present for only short duration.&amp;nbsp; Low pass filtering, or averaging of the results for each axis, should filter out vibration components.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mac&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jan 2010 09:31:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128392#M1666</guid>
      <dc:creator>bigmac</dc:creator>
      <dc:date>2010-01-28T09:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing Positioning Algorithms Using Accelerometers ...</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128393#M1667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bigmac!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I´m not trying to detect the removal of my circuit from a motor. My equipment is collecting data and transmitting to a remote Data Collector (300 meters afar) that sends this information (encrypted) to our office via Web. Both the End Device and Access Point have accelerometers to detect the removal from its home position (could be an wall near the point of interest).In reality I think that accelerometers could be 2-axis. I received my ST eval board (LIS302DL) today and I´ll test it.My processor is Texas MSP430F2274.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Arqui&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jan 2010 08:54:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128393#M1667</guid>
      <dc:creator>Arquimedes</dc:creator>
      <dc:date>2010-01-29T08:54:42Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing Positioning Algorithms Using Accelerometers ...</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128394#M1668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the program to test ST evaluation board STEVAL-MKI006V1 is stopping responding after a time of use. My operational system is Windows Vista 64 bits (Laptop HP Pavilion dv6000 with 4GB of DDRII-RAM). Map browsing demo is out of control. Do I need to change registers values?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jan 2010 22:14:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128394#M1668</guid>
      <dc:creator>Arquimedes</dc:creator>
      <dc:date>2010-01-29T22:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing Positioning Algorithms Using Accelerometers ...</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128395#M1669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You are unlikely to receive help on this forum concerning an evaluation board that uses a non-Freescale processor.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mac&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jan 2010 11:03:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128395#M1669</guid>
      <dc:creator>bigmac</dc:creator>
      <dc:date>2010-01-30T11:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing Positioning Algorithms Using Accelerometers ...</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128396#M1670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;I´m testing the evaluation board. It comes with a freescale processor. I just plug the eval board on my PC and ran the demo software downloaded from ST. As you can see I didn´t connect any other processor.&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jan 2010 22:20:13 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128396#M1670</guid>
      <dc:creator>Arquimedes</dc:creator>
      <dc:date>2010-01-30T22:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing Positioning Algorithms Using Accelerometers ...</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128397#M1671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;I´m sorry! I´m sorry! You are right! The board I´m testing is an ST board, not Freescale!! &lt;IMG alt=":smileysad:" class="emoticon emoticon-smileysad" id="smileysad" src="http://freescale.i.lithium.com/i/smilies/16x16_smiley-sad.gif" title="Smiley Sad" /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Jan 2010 22:30:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128397#M1671</guid>
      <dc:creator>Arquimedes</dc:creator>
      <dc:date>2010-01-30T22:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing Positioning Algorithms Using Accelerometers ...</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128398#M1672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I´m testing MMA7260QT accelerometer. My microcontroller is an MSP430F2274. I connect accelerometer to my microcontroller according schematic in AN3397. The code I used was derived from the source code in same AN (just added code for z-axis). I used P2.1, P2.2 and P2.3 in MSP430. The problem is that with the accelerometer in a fixed position (no-movement), there´s a big variation in x,y,z position. I expected to read values around zero in such situation. Below is my ADC_GetAllAxis routine&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;void ADC_GetAllAxis(void)&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; unsigned int delay;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; ADC10CTL0 = ADC10SHT_2 + ADC10ON + ADC10IE;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; delay = 0x0100;&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;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; //X-Axis&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ADC10AE0 |= 0x02;&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; //P2.1 - A1 ADC input port&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ADC10CTL0 &amp;amp;= ~ENC;&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; //Disable conversion&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; while (ADC10CTL1 &amp;amp; BUSY);&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; //Wait ADC10 to be ready&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ADC10CTL0 |= ENC + ADC10SC;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //Enable and start conversion&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Sample_X = ADC10MEM;&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; //Take converted value&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; while(--delay);&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; //Wait&lt;BR /&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; delay = 0x0100;&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;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; //Y-Axis&lt;BR /&gt;&amp;nbsp;&amp;nbsp; ADC10AE0 |= 0x04;&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; //P2.2 - A2 ADC input port&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ADC10CTL0 &amp;amp;= ~ENC;&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;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; while (ADC10CTL1 &amp;amp; BUSY);&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;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ADC10CTL0 |= ENC + ADC10SC;&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;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; Sample_Y = ADC10MEM;&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;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; while(--delay);&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;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; delay = 0x0100;&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;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; //Z-Axis&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ADC10AE0 |= 0x08;&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; //P2.3 - A3 ADC input port&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ADC10CTL0 &amp;amp;= ~ENC;&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;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; while (ADC10CTL1 &amp;amp; BUSY);&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;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; ADC10CTL0 |= ENC + ADC10SC;&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;&amp;nbsp; Sample_Z= ADC10MEM;&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;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; while(--delay);&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;&lt;BR /&gt;}&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Feb 2010 22:01:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128398#M1672</guid>
      <dc:creator>Arquimedes</dc:creator>
      <dc:date>2010-02-06T22:01:31Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing Positioning Algorithms Using Accelerometers ...</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128399#M1673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I forgot to put ISR routine&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;__interrupt void ADC_ISR(void)&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt;ADC10_ISR(ADC_ISR)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 06 Feb 2010 22:03:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128399#M1673</guid>
      <dc:creator>Arquimedes</dc:creator>
      <dc:date>2010-02-06T22:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing Positioning Algorithms Using Accelerometers ...</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128400#M1674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;Arquimedes wrote:&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;The problem is that with the accelerometer in a fixed position (no-movement), there´s a big variation in x,y,z position. I expected to read values around zero in such situation.&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;My understanding is that the outputs from the accelerometer are biased to about one-half the supply rail voltage to operate at the centre of the linear output region.&amp;nbsp; Each output will therefore swing positively and negatively about this point.&amp;nbsp; This offset voltage must be taken into account for the ADC calculations.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The other factor is that, one or more axes, depending on the orientation of the accelerometer, will output a static voltage swing corresponding to its component of gravitational acceleration.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mac&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Feb 2010 11:45:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/Implementing-Positioning-Algorithms-Using-Accelerometer-MMA7260Q/m-p/128400#M1674</guid>
      <dc:creator>bigmac</dc:creator>
      <dc:date>2010-02-07T11:45:48Z</dc:date>
    </item>
  </channel>
</rss>

