<?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 LPCXpresso 7.4.0 double floating-point issues in LPCXpresso IDE</title>
    <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588539#M28186</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by ld0d on Fri Oct 24 09:11:59 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm trying to use emulated double-precision floating point numbers with LPCXpresso 7.4.0 and the LPC4333 MCU.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For some reason the division operation gives incorrect results. For example the following C++ code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;static volatile double r2 = 2.0;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;static volatile double rr = 1.0 / r2;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;shows the result 'rr' as 0.25 in the LPCXpresso debugger, instead of 0.5.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What could be wrong? I'm using the FPv4-SP (Soft ABI) mode with NewlibNano (nohost), and I'm optimizing for size (-Os). This is a release build.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Edit: Example above is in C++. With 'float' instead of 'double', the result is correct.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Jun 2016 01:23:57 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-16T01:23:57Z</dc:date>
    <item>
      <title>LPCXpresso 7.4.0 double floating-point issues</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588539#M28186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by ld0d on Fri Oct 24 09:11:59 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm trying to use emulated double-precision floating point numbers with LPCXpresso 7.4.0 and the LPC4333 MCU.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For some reason the division operation gives incorrect results. For example the following C++ code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;static volatile double r2 = 2.0;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;static volatile double rr = 1.0 / r2;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;shows the result 'rr' as 0.25 in the LPCXpresso debugger, instead of 0.5.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What could be wrong? I'm using the FPv4-SP (Soft ABI) mode with NewlibNano (nohost), and I'm optimizing for size (-Os). This is a release build.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Edit: Example above is in C++. With 'float' instead of 'double', the result is correct.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 01:23:57 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588539#M28186</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T01:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: LPCXpresso 7.4.0 double floating-point issues</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588540#M28187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by lpcxpresso-support on Fri Oct 24 09:41:09 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Well, that code won't even compile for me:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;../src/timer_main.c:55:2: error: initializer element is not constant&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 01:23:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588540#M28187</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T01:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: LPCXpresso 7.4.0 double floating-point issues</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588541#M28188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by capiman on Fri Oct 24 09:45:33 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;C++ source file?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 01:23:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588541#M28188</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T01:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: LPCXpresso 7.4.0 double floating-point issues</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588542#M28189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by ld0d on Fri Oct 24 10:02:02 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, C++.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 01:23:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588542#M28189</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T01:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: LPCXpresso 7.4.0 double floating-point issues</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588543#M28190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by lpcxpresso-support on Fri Oct 24 10:12:47 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Whoops - late on a Friday for me...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Anyway, it works for me (see screenshot).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Can you provide an example project that shows it misbehaving?&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 01:23:59 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588543#M28190</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T01:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: LPCXpresso 7.4.0 double floating-point issues</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588544#M28191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by ld0d on Fri Oct 24 10:54:10 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I was creating an example project, and found out that I only get the wrong result if the MCU is clocked at 96 MHz or higher.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To test this, I created an empty multicore project, set up the dual-bank memory configuration, and replaced main with this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;
// TODO: insert other definitions and declarations here

// System clock configuration
extern "C" {
#include "lpc43xx_cgu.h"
}

int main(void) {

&amp;nbsp;&amp;nbsp;&amp;nbsp; const int clock_multiplier = 8;
&amp;nbsp;&amp;nbsp;&amp;nbsp; CGU_Init(clock_multiplier);
&amp;nbsp;&amp;nbsp;&amp;nbsp; SystemCoreClock = clock_multiplier * 12000000;

&amp;nbsp;&amp;nbsp;&amp;nbsp; static volatile double r2 = 2.0;
&amp;nbsp;&amp;nbsp;&amp;nbsp; static volatile double rr = 1.0 / r2;

&amp;nbsp;&amp;nbsp;&amp;nbsp; // Start M0APP slave processor
#if defined (LPC43_MULTICORE_M0APP)
&amp;nbsp;&amp;nbsp;&amp;nbsp; cr_start_m0(SLAVE_M0APP,&amp;amp;__core_m0app_START__);
#endif

&amp;nbsp;&amp;nbsp;&amp;nbsp; // Start M0SUB slave processor
#if defined (LPC43_MULTICORE_M0SUB)
&amp;nbsp;&amp;nbsp;&amp;nbsp; cr_start_m0(SLAVE_M0SUB,&amp;amp;__core_m0sub_START__);
#endif

&amp;nbsp;&amp;nbsp;&amp;nbsp; // TODO: insert code here

&amp;nbsp;&amp;nbsp;&amp;nbsp; // Force the counter to be placed into memory
&amp;nbsp;&amp;nbsp;&amp;nbsp; volatile static int i = 0 ;
&amp;nbsp;&amp;nbsp;&amp;nbsp; // Enter an infinite loop, just incrementing a counter
&amp;nbsp;&amp;nbsp;&amp;nbsp; while(1) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; i++ ;
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; return 0 ;
}
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;With clock_multiplier=8 the result is 0.25, with clock_multiplier=7 or lower I get rr=0.5 like I should. Weird.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 01:24:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588544#M28191</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T01:24:00Z</dc:date>
    </item>
    <item>
      <title>Re: LPCXpresso 7.4.0 double floating-point issues</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588545#M28192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by ld0d on Fri Oct 24 11:01:14 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the failing example project.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 01:24:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588545#M28192</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T01:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: LPCXpresso 7.4.0 double floating-point issues</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588546#M28193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by ld0d on Fri Oct 24 13:54:04 MST 2014&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;I get the correct result if I single-step through __divdf3 instruction by instruction.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 01:24:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588546#M28193</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T01:24:01Z</dc:date>
    </item>
    <item>
      <title>Re: LPCXpresso 7.4.0 double floating-point issues</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588547#M28194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by lyndaeldo on Wed Mar 18 00:23:18 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;The Decimal, Double, and Float variable types are different in the way that they store the values. Precision is the main difference where float is a single precision (32 bit) floating point data type, double is a double precision (64 bit) floating point data type and decimal is a 128-bit floating point data type.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Float - 32 bit (7 digits)&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Double - 64 bit (15-16 digits)&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Decimal - 128 bit (28-29 significant digits)&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;More about.......&lt;/SPAN&gt;&lt;A href="http://http://net-informations.com/q/faq/float.html"&gt;Decimal vs Double vs Float&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Lynda&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 01:24:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588547#M28194</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T01:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: LPCXpresso 7.4.0 double floating-point issues</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588548#M28195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by JohnR on Wed Mar 18 08:45:35 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Maybe you are not allowing enough time for the line SystemCoreClock = clock_multiplier * 12000000 ??&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you place your two lines at&amp;nbsp; // TODO: insert code here would it make a difference??&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;JohnR&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 01:24:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588548#M28195</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T01:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: LPCXpresso 7.4.0 double floating-point issues</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588549#M28196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by ld0d on Thu Mar 19 01:58:13 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: JohnR&lt;/STRONG&gt;&lt;BR /&gt;Maybe you are not allowing enough time for the line SystemCoreClock = clock_multiplier * 12000000 ??&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That shouldn't affect the math emulation library... right? I found the issue originally in code that was executed much later in the program.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: JohnR&lt;/STRONG&gt;&lt;BR /&gt;If you place your two lines at&amp;nbsp; // TODO: insert code here would it make a difference??&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yeah, if it's C, you cannot do that (only constants can be defined there), and if it's C++, the calculation will be done before the main() function is reached.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 01:24:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588549#M28196</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T01:24:03Z</dc:date>
    </item>
    <item>
      <title>Re: LPCXpresso 7.4.0 double floating-point issues</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588550#M28197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by starblue on Thu Mar 19 02:05:44 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;That is just an assignment to a global variable and shouldn't cause any strange effects.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If there is a glitch in the matrix it should be due to CGU_Init().&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 01:24:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588550#M28197</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T01:24:04Z</dc:date>
    </item>
    <item>
      <title>Re: LPCXpresso 7.4.0 double floating-point issues</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588551#M28198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by johnsonjeven on Wed May 11 23:45:38 MST 2016&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Precision is the main difference where double is a double precision (64 bit) floating point data type and decimal is a 128-bit floating point data type.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Double - 64 bit (15-16 digits)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Decimal - 128 bit (28-29 significant digits)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So Decimals have much higher precision and are usually used within monetary (financial) applications that require a high degree of accuracy. But in performance wise Decimals are slower than double and float types. Double Types are probably the most normally used data type for real values, except handling money. More about......&lt;/SPAN&gt;&lt;A href="http://http://net-informations.com/q/faq/float.html"&gt;Decimal vs Double vs Float&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Johnson&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 01:24:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/LPCXpresso-7-4-0-double-floating-point-issues/m-p/588551#M28198</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T01:24:04Z</dc:date>
    </item>
  </channel>
</rss>

