<?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: Why .bss section is placed in Flash? in LPC Microcontrollers</title>
    <link>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936091#M37328</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any update on this??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Sep 2019 09:00:24 GMT</pubDate>
    <dc:creator>jtro</dc:creator>
    <dc:date>2019-09-09T09:00:24Z</dc:date>
    <item>
      <title>Why .bss section is placed in Flash?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936079#M37316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I observed that when I'm increase or decrease variable array size, flash size is also change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have seen in Flash Memory contents it shows .bss section which occupy considerable amount of Flash why .bss section comes in Flash?? It should be there in RAM section only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have even check linker setting in project setting but no option available?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wonder why .bss section is mapped in SRAM and how to change it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Sep 2019 10:14:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936079#M37316</guid>
      <dc:creator>jtro</dc:creator>
      <dc:date>2019-09-02T10:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: Why .bss section is placed in Flash?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936080#M37317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe you could share some details about what you see?&lt;/P&gt;&lt;P&gt;Maybe you see the problem described here: &lt;A class="link-titled" href="https://mcuoneclipse.com/2014/04/19/gnu-linker-can-you-not-initialize-my-variable/" title="https://mcuoneclipse.com/2014/04/19/gnu-linker-can-you-not-initialize-my-variable/"&gt;GNU Linker, can you NOT Initialize my Variable? | MCU on Eclipse&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps,&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Sep 2019 16:52:34 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936080#M37317</guid>
      <dc:creator>BlackNight</dc:creator>
      <dc:date>2019-09-02T16:52:34Z</dc:date>
    </item>
    <item>
      <title>Re: Why .bss section is placed in Flash?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936081#M37318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No this is not like that.. I know basic concept of .data, .bss,..etc. If any data is initialized with any value then it considered as .data not .bss.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my case&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1) suppose array size is 256&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;uint8_t variable[256];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got below memory usage in MXUXpresso&lt;/P&gt;&lt;P&gt;In &lt;STRONG&gt;Image Info -&amp;gt;&amp;nbsp; Memory Usage&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Program Flash - 13.47 KB&lt;/P&gt;&lt;P&gt;SRAM - 4.52 KB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In console window after compilation&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; text&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; data&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bss&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dec&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; hex&amp;nbsp;&amp;nbsp; &amp;nbsp;filename&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;9311&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 64&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; 4560&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; 13935&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; 366f &amp;nbsp;&amp;nbsp; test.axf&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2) Changed array size to 1024&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;uint8_t variable[1024];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got below memory usage in MXUXpresso&lt;/P&gt;&lt;P&gt;In &lt;STRONG&gt;Image Info -&amp;gt;&amp;nbsp; Memory Usage&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Program Flash - 14.23 KB&amp;nbsp; (increased by 768)&lt;/P&gt;&lt;P&gt;SRAM - 5.27 KB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In console window after compilation&lt;/P&gt;&lt;P&gt;&amp;nbsp;text&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; data&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; bss&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dec&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; hex&amp;nbsp;&amp;nbsp; &amp;nbsp;filename&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;9315&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 64&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; 5328&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; 14707&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; 3973 &amp;nbsp;&amp;nbsp; test.axf&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After compare above result i thought there may have some error in memory usage calculation in &lt;STRONG&gt;Image Info&amp;nbsp;&lt;/STRONG&gt;or something I'm missing not sure..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result in console window is ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why image Info show wrong memory usage??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Sep 2019 06:01:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936081#M37318</guid>
      <dc:creator>jtro</dc:creator>
      <dc:date>2019-09-03T06:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: Why .bss section is placed in Flash?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936082#M37319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried the same, but I have to say it is correct for me (using a K22 device):&lt;/P&gt;&lt;P&gt;With this&lt;/P&gt;&lt;P&gt;uint8_t var[256];&lt;/P&gt;&lt;P&gt;I get&lt;/P&gt;&lt;P&gt;Region&amp;nbsp;&amp;nbsp; &amp;nbsp;Start address&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;End address&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Free&amp;nbsp;&amp;nbsp; &amp;nbsp;Used&amp;nbsp;&amp;nbsp; &amp;nbsp;Usage (%)&lt;BR /&gt;PROGRAM_FLASH&amp;nbsp;&amp;nbsp; &amp;nbsp;0x0&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;0x40000&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;262144&amp;nbsp;&amp;nbsp; &amp;nbsp;254436&amp;nbsp;&amp;nbsp; &amp;nbsp;7708&amp;nbsp;&amp;nbsp; &amp;nbsp;2.94%&lt;BR /&gt;SRAM_UPPER&amp;nbsp;&amp;nbsp; &amp;nbsp;0x20000000&amp;nbsp;&amp;nbsp; &amp;nbsp;0x20004000&amp;nbsp;&amp;nbsp; &amp;nbsp;16384&amp;nbsp;&amp;nbsp; &amp;nbsp;13880&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;STRONG&gt;2504&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/STRONG&gt;15.28%&lt;BR /&gt;SRAM_LOWER&amp;nbsp;&amp;nbsp; &amp;nbsp;0x1fffc000&amp;nbsp;&amp;nbsp; &amp;nbsp;0x20000000&amp;nbsp;&amp;nbsp; &amp;nbsp;16384&amp;nbsp;&amp;nbsp; &amp;nbsp;16384&amp;nbsp;&amp;nbsp; &amp;nbsp;0&amp;nbsp;&amp;nbsp; &amp;nbsp;0.00%&lt;BR /&gt;FLEX_RAM&amp;nbsp;&amp;nbsp; &amp;nbsp;0x14000000&amp;nbsp;&amp;nbsp; &amp;nbsp;0x14001000&amp;nbsp;&amp;nbsp; &amp;nbsp;4096&amp;nbsp;&amp;nbsp; &amp;nbsp;4096&amp;nbsp;&amp;nbsp; &amp;nbsp;0&amp;nbsp;&amp;nbsp; &amp;nbsp;0.00%&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and with this&lt;/P&gt;&lt;P&gt;uint8_t var[256+1024];&lt;/P&gt;&lt;P&gt;I get&lt;/P&gt;&lt;P&gt;Region&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Start address&amp;nbsp;&amp;nbsp; &amp;nbsp;End address&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Free&amp;nbsp;&amp;nbsp; &amp;nbsp;Used&amp;nbsp;&amp;nbsp; &amp;nbsp;Usage (%)&lt;BR /&gt;PROGRAM_FLASH&amp;nbsp;&amp;nbsp; &amp;nbsp;0x0&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;0x40000&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;262144&amp;nbsp;&amp;nbsp; &amp;nbsp;254436&amp;nbsp;&amp;nbsp; &amp;nbsp;7708&amp;nbsp;&amp;nbsp; &amp;nbsp;2.94%&lt;BR /&gt;SRAM_UPPER&amp;nbsp;&amp;nbsp; &amp;nbsp;0x20000000&amp;nbsp;&amp;nbsp; &amp;nbsp;0x20004000&amp;nbsp;&amp;nbsp; &amp;nbsp;16384&amp;nbsp;&amp;nbsp; &amp;nbsp;12856&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;STRONG&gt;3528&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;/STRONG&gt;21.53%&lt;BR /&gt;SRAM_LOWER&amp;nbsp;&amp;nbsp; &amp;nbsp;0x1fffc000&amp;nbsp;&amp;nbsp; &amp;nbsp;0x20000000&amp;nbsp;&amp;nbsp; &amp;nbsp;16384&amp;nbsp;&amp;nbsp; &amp;nbsp;16384&amp;nbsp;&amp;nbsp; &amp;nbsp;0&amp;nbsp;&amp;nbsp; &amp;nbsp;0.00%&lt;BR /&gt;FLEX_RAM&amp;nbsp;&amp;nbsp; &amp;nbsp;0x14000000&amp;nbsp;&amp;nbsp; &amp;nbsp;0x14001000&amp;nbsp;&amp;nbsp; &amp;nbsp;4096&amp;nbsp;&amp;nbsp; &amp;nbsp;4096&amp;nbsp;&amp;nbsp; &amp;nbsp;0&amp;nbsp;&amp;nbsp; &amp;nbsp;0.00%&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which is what I expect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you share your project here so the engineers could have a look?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Sep 2019 08:48:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936082#M37319</guid>
      <dc:creator>BlackNight</dc:creator>
      <dc:date>2019-09-03T08:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: Why .bss section is placed in Flash?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936083#M37320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please check workspace..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to UART.h file and change buffer value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Sep 2019 09:55:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936083#M37320</guid>
      <dc:creator>jtro</dc:creator>
      <dc:date>2019-09-03T09:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: Why .bss section is placed in Flash?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936084#M37321</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;I checked your project and did the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Build the project and got the following results&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;Memory region&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Used Size&amp;nbsp; Region Size&amp;nbsp; %age Used&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; PROGRAM_FLASH:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4612 B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 24560 B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 18.78%&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PRODUCT_INFO:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0 GB&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 16 B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.00%&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SRAM:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4288 B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 16 KB&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 26.17%&lt;/P&gt;&lt;P&gt;Finished building target: bss.axf&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;make --no-print-directory post-build&lt;/P&gt;&lt;P&gt;Performing post-build steps&lt;/P&gt;&lt;P&gt;arm-none-eabi-size "bss.axf" ; arm-none-eabi-objcopy -v -O binary "bss.axf" "bss.bin" ; # checksum -p LPC845 -d "bss.bin"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; text&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; data&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;bss&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dec&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; hex&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;filename&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 4608&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; 4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;4284&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 8896&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 22c0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;bss.axf&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Then, I increased txBuffer as you suggested:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_2.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/82713iF0C77CA7716E58F5/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_2.png" alt="pastedImage_2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I got the results below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;Memory region&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Used Size&amp;nbsp; Region Size&amp;nbsp; %age Used&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; PROGRAM_FLASH:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4612 B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 24560 B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 18.78%&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PRODUCT_INFO:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0 GB&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 16 B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0.00%&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SRAM:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5312 B&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 16 KB&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 32.42%&lt;/P&gt;&lt;P&gt;Finished building target: bss.axf&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;make --no-print-directory post-build&lt;/P&gt;&lt;P&gt;Performing post-build steps&lt;/P&gt;&lt;P&gt;arm-none-eabi-size "bss.axf" ; arm-none-eabi-objcopy -v -O binary "bss.axf" "bss.bin" ; # checksum -p LPC845 -d "bss.bin"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; text&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; data&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;STRONG&gt; bss&amp;nbsp;&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; dec&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; hex&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;filename&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 4608&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; 4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;STRONG&gt; 5308&lt;/STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 9920&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 26c0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;bss.axf&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;It seems the bss is increased correctly, could you please clarify if you are doing something differently or if I missed something?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Felipe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Sep 2019 15:27:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936084#M37321</guid>
      <dc:creator>FelipeGarcia</dc:creator>
      <dc:date>2019-09-04T15:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: Why .bss section is placed in Flash?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936085#M37322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, if you increase the array from 256 to 1024 the difference is 768. I can't see a fault neither in Image Info nor in console. Image Info has a very small difference because of the unit in kB (not really, but it looks like).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Obviously I don't understand the problem; please describe again more clearly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Sep 2019 20:35:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936085#M37322</guid>
      <dc:creator>1234567890</dc:creator>
      <dc:date>2019-09-04T20:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: Why .bss section is placed in Flash?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936086#M37323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As&amp;nbsp;i told in earlier post, Console shows correct value but Image Info&amp;nbsp;shows wrong value.&amp;nbsp;Please compare&amp;nbsp;below images with different buffer size.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With 256:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="256.jpg"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/83063i38BD8B3CD20B2A11/image-size/large?v=v2&amp;amp;px=999" role="button" title="256.jpg" alt="256.jpg" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;with 4096:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="4096.jpg"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/83108iE78B6F4BDE9C36FA/image-size/large?v=v2&amp;amp;px=999" role="button" title="4096.jpg" alt="4096.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope above image is enough to describe my issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Sep 2019 03:57:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936086#M37323</guid>
      <dc:creator>jtro</dc:creator>
      <dc:date>2019-09-05T03:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: Why .bss section is placed in Flash?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936087#M37324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be worth trying v11.0.1. The release notes include the comment:&lt;/P&gt;&lt;UL style="color: #51626f; border: 0px; padding: 0px 0px 0px 30px;"&gt;&lt;LI style="border: 0px; font-weight: inherit; margin: 0.5ex 0px;"&gt;Fixed various issues with Image Info view&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Sep 2019 19:39:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936087#M37324</guid>
      <dc:creator>converse</dc:creator>
      <dc:date>2019-09-05T19:39:35Z</dc:date>
    </item>
    <item>
      <title>Re: Why .bss section is placed in Flash?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936088#M37325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tried with latest software v11.0.1. No difference.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Getting same result.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2019 04:12:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936088#M37325</guid>
      <dc:creator>jtro</dc:creator>
      <dc:date>2019-09-06T04:12:32Z</dc:date>
    </item>
    <item>
      <title>Re: Why .bss section is placed in Flash?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936089#M37326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just had a quick look, using the 'bss' project that you provided previously.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First comment is that the figures provide in the Memory Usage tab are those that are output by the linker when using --print-memory-usage, so it is the linker that is generating her numbers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, using the&amp;nbsp;&lt;/P&gt;&lt;P style="color: #0000c0; margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN class=""&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #005032;"&gt;U8&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN class=""&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;au8RxBuffer&lt;SPAN style="color: #000000;"&gt;[4096];&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #0000c0; margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;SPAN style="color: #000000;"&gt;I see&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;SPAN class=""&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;PROGRAM_FLASH:&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;4612 B&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;24560 B &lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;18.78%&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;PRODUCT_INFO:&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;0 GB &lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;16 B&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;0.00%&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;SRAM:&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;4288 B&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;16 KB &lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;26.17%&lt;/P&gt;&lt;P style="color: #0000c0; margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;SPAN style="color: #000000;"&gt;and when using&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #0000c0; margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #005032;"&gt;U8&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;au8RxBuffer&lt;SPAN&gt;[256];&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #0000c0; margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;SPAN style="color: #000000;"&gt;I see&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;SPAN class=""&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;PROGRAM_FLASH:&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;4620 B&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;24560 B &lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;18.81%&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;PRODUCT_INFO:&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;0 GB &lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;16 B&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;0.00%&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;SRAM: &lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;448 B&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;16 KB&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;2.73%&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;So the only significant difference is that SRAM increases by 3840 bytes (the difference being the increase in the buffer size (4096-256).&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;This is using the application that you posted, with the only change being the size of auRxBuffer. What is it that you are doing that is different?&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;[EDIT]&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px;"&gt;Comparing the numbers shown in the Image Info view - I DO see your problem. This looks like a bug in the ImageInfo viewer @NXP - can somebody look into this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2019 08:08:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936089#M37326</guid>
      <dc:creator>converse</dc:creator>
      <dc:date>2019-09-06T08:08:17Z</dc:date>
    </item>
    <item>
      <title>Re: Why .bss section is placed in Flash?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936090#M37327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As I said in earlier post In &lt;STRONG&gt;console&lt;/STRONG&gt; tab everything is OK only issue is in &lt;STRONG&gt;Image Info&lt;/STRONG&gt; tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Image info.jpg"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/84458i6BECF9DC9E2B71C3/image-size/large?v=v2&amp;amp;px=999" role="button" title="Image info.jpg" alt="Image info.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;compare Usage (%) in&amp;nbsp;previous post where i have shown you with memory usage with different buffer size.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Region &lt;STRONG&gt;PROGRAM_FLASH&lt;/STRONG&gt; should not change if i change buffer value.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Sep 2019 08:17:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936090#M37327</guid>
      <dc:creator>jtro</dc:creator>
      <dc:date>2019-09-06T08:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: Why .bss section is placed in Flash?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936091#M37328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any update on this??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Sep 2019 09:00:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936091#M37328</guid>
      <dc:creator>jtro</dc:creator>
      <dc:date>2019-09-09T09:00:24Z</dc:date>
    </item>
    <item>
      <title>Re: Why .bss section is placed in Flash?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936092#M37329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No reply from NXP..!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When problem is resolved?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm waiting for solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Sep 2019 04:05:40 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936092#M37329</guid>
      <dc:creator>jtro</dc:creator>
      <dc:date>2019-09-18T04:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: Why .bss section is placed in Flash?</title>
      <link>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936093#M37330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems that the image info data is incorrect. I recommend you to see the console instead we will fix this in the next release.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Felipe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Sep 2019 19:29:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/LPC-Microcontrollers/Why-bss-section-is-placed-in-Flash/m-p/936093#M37330</guid>
      <dc:creator>FelipeGarcia</dc:creator>
      <dc:date>2019-09-18T19:29:39Z</dc:date>
    </item>
  </channel>
</rss>

