<?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>LPCXpresso IDEのトピックRe: Check heap usage at runtime</title>
    <link>https://community.nxp.com/t5/LPCXpresso-IDE/Check-heap-usage-at-runtime/m-p/553524#M12802</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by MichelKuenemann on Tue Mar 31 02:17:51 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for these informations.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Additionaly, I have tried following :&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;
 extern void *_pvHeapLimit;

 printf("_pvHeapLimit = %x\n", (unsigned int) _pvHeapLimit);
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I did not test it at run time, but it compiles.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This variable seems to be the "heap limit" I was looking for.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So finally, follwowing variables are available :&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;
extern void *__end_of_heap;
extern void *__heaps;
extern void *_pvHeapStart;
extern void *_pvHeapLimit; // To be confirmed.
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;MK&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Jun 2016 00:44:35 GMT</pubDate>
    <dc:creator>lpcware</dc:creator>
    <dc:date>2016-06-16T00:44:35Z</dc:date>
    <item>
      <title>Check heap usage at runtime</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Check-heap-usage-at-runtime/m-p/553520#M12798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by MichelKuenemann on Sun Mar 29 22:06:31 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I use dynamic memory allocation in my applications, and I need to check the heap usage at runtime.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;SPAN&gt;This link gives good information to set the heap start and limit: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.lpcware.com%2Fcontent%2Ffaq%2Flpcxpresso%2Fheap-checking-redlib" rel="nofollow" target="_blank"&gt;http://www.lpcware.com/content/faq/lpcxpresso/heap-checking-redlib&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would also like to read the&amp;nbsp; "__end_of_heap" variable to check the available memory, but the linker does not find this symbol:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;printf( "End of heap %x\r", __end_of_heap);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;error: '__end_of_heap' undeclared (first use in this function)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How can I fix this issue ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks a lot&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Michel&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 00:44:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Check-heap-usage-at-runtime/m-p/553520#M12798</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T00:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: Check heap usage at runtime</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Check-heap-usage-at-runtime/m-p/553521#M12799</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 Mon Mar 30 00:52:51 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Adding the following declaration to your source should allow the link to suceed:&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;extern void *__end_of_heap;&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Note that by default, printf uses the heap too, so you might want to switch to the character output (non-heap) version, as described in:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.lpcware.com%2Fcontent%2Ffaq%2Flpcxpresso%2Fusing-printf" rel="nofollow noopener noreferrer" target="_blank"&gt;http://www.lpcware.com/content/faq/lpcxpresso/using-printf&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Finally, note that in the current Redlib heap functions, __end_of_heap basically does mark&amp;nbsp; the maximum extent that the heap has reached.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPCXpresso Support&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 00:44:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Check-heap-usage-at-runtime/m-p/553521#M12799</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T00:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: Check heap usage at runtime</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Check-heap-usage-at-runtime/m-p/553522#M12800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by MichelKuenemann on Mon Mar 30 04:20:06 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello Support,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for the info. It works fine now.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have some other questions regarding the run time management of the heap:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there a global variable containing the start of the heap ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there a global variable containing the limit of the heap ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My goal is to create a function that returns the total size of the heap and the current heap consumption, a bit like a fuel gauge.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Michel&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 00:44:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Check-heap-usage-at-runtime/m-p/553522#M12800</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T00:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: Check heap usage at runtime</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Check-heap-usage-at-runtime/m-p/553523#M12801</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 Mon Mar 30 05:52:42 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: MichelKuenemann&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;Is there a global variable containing the start of the heap ?&lt;BR /&gt;&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You should be able to do this using either:&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;&amp;nbsp;&amp;nbsp; extern void *__heaps;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :
&amp;nbsp;&amp;nbsp;&amp;nbsp; printf("__heaps = %x\n",__heaps);&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;or&lt;/SPAN&gt;&lt;BR /&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD bgcolor="#cacaca"&gt; &lt;PRE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; extern void *_pvHeapStart;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; :
&amp;nbsp;&amp;nbsp;&amp;nbsp; printf("_pvHeapStart = %x\n",&amp;amp;_pvHeapStart);&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: MichelKuenemann&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;Is there a global variable containing the limit of the heap ?&lt;BR /&gt;&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is what __end_of_heap is, but it includes free'ed blocks at the end of the heap, which may not what you are looking for.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPCXpresso Support&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 00:44:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Check-heap-usage-at-runtime/m-p/553523#M12801</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T00:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: Check heap usage at runtime</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Check-heap-usage-at-runtime/m-p/553524#M12802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by MichelKuenemann on Tue Mar 31 02:17:51 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for these informations.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Additionaly, I have tried following :&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;
 extern void *_pvHeapLimit;

 printf("_pvHeapLimit = %x\n", (unsigned int) _pvHeapLimit);
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I did not test it at run time, but it compiles.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This variable seems to be the "heap limit" I was looking for.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So finally, follwowing variables are available :&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;
extern void *__end_of_heap;
extern void *__heaps;
extern void *_pvHeapStart;
extern void *_pvHeapLimit; // To be confirmed.
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;MK&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 00:44:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Check-heap-usage-at-runtime/m-p/553524#M12802</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T00:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: Check heap usage at runtime</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Check-heap-usage-at-runtime/m-p/553525#M12803</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 Tue Mar 31 04:42:16 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;Quote: MichelKuenemann&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;extern void *_pvHeapLimit; // To be confirmed.&lt;BR /&gt;&lt;/SPAN&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;_pvHeapLimit is the location that the current end of the heap is checked again when more memory is requested. If the additional memory required would take the heap beyond _pvHeapLimit, then malloc will fail.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please re-read the FAQ for more details:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&lt;A class="jive-link-external-small" href="https://community.nxp.com/external-link.jspa?url=http%3A%2F%2Fwww.lpcware.com%2Fcontent%2Ffaq%2Flpcxpresso%2Fheap-checking-redlib" rel="nofollow" target="_blank"&gt;http://www.lpcware.com/content/faq/lpcxpresso/heap-checking-redlib&lt;/A&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPCXpresso Support&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 00:44:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Check-heap-usage-at-runtime/m-p/553525#M12803</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T00:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: Check heap usage at runtime</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Check-heap-usage-at-runtime/m-p/553526#M12804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by MichelKuenemann on Tue Mar 31 06:08:00 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If I compute the available dynamic memory this way, am I correct ?&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;
unsigned long&amp;nbsp; available_dynamic_memory;

available_dynamic_memory&amp;nbsp; = _pvHeapLimit - __end_of_heap;
&lt;/PRE&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Michel&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 00:44:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Check-heap-usage-at-runtime/m-p/553526#M12804</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T00:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: Check heap usage at runtime</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Check-heap-usage-at-runtime/m-p/553527#M12805</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 Wed Apr 01 05:09:28 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes as long as you remember that the location pointed to by __end_of_heap includes the space occupied by free'ed blocks at the end of the heap.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;LPCXpresso Support&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 00:44:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Check-heap-usage-at-runtime/m-p/553527#M12805</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T00:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: Check heap usage at runtime</title>
      <link>https://community.nxp.com/t5/LPCXpresso-IDE/Check-heap-usage-at-runtime/m-p/553528#M12806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;STRONG&gt;Content originally posted in LPCWare by MichelKuenemann on Wed Apr 01 12:30:25 MST 2015&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, that's clear. it is not an issue in my case because, in my applications, I (almost) never free() memory :-)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think that this topic can be closed now.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks a lot for your time.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Michel&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 00:44:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPCXpresso-IDE/Check-heap-usage-at-runtime/m-p/553528#M12806</guid>
      <dc:creator>lpcware</dc:creator>
      <dc:date>2016-06-16T00:44:38Z</dc:date>
    </item>
  </channel>
</rss>

